solarviewer 1.0.2__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 (82) hide show
  1. solar_radio_image_viewer/__init__.py +12 -0
  2. solar_radio_image_viewer/assets/add_tab_default.png +0 -0
  3. solar_radio_image_viewer/assets/add_tab_default_light.png +0 -0
  4. solar_radio_image_viewer/assets/add_tab_hover.png +0 -0
  5. solar_radio_image_viewer/assets/add_tab_hover_light.png +0 -0
  6. solar_radio_image_viewer/assets/browse.png +0 -0
  7. solar_radio_image_viewer/assets/browse_light.png +0 -0
  8. solar_radio_image_viewer/assets/close_tab_default.png +0 -0
  9. solar_radio_image_viewer/assets/close_tab_default_light.png +0 -0
  10. solar_radio_image_viewer/assets/close_tab_hover.png +0 -0
  11. solar_radio_image_viewer/assets/close_tab_hover_light.png +0 -0
  12. solar_radio_image_viewer/assets/ellipse_selection.png +0 -0
  13. solar_radio_image_viewer/assets/ellipse_selection_light.png +0 -0
  14. solar_radio_image_viewer/assets/icons8-ellipse-90.png +0 -0
  15. solar_radio_image_viewer/assets/icons8-ellipse-90_light.png +0 -0
  16. solar_radio_image_viewer/assets/icons8-info-90.png +0 -0
  17. solar_radio_image_viewer/assets/icons8-info-90_light.png +0 -0
  18. solar_radio_image_viewer/assets/profile.png +0 -0
  19. solar_radio_image_viewer/assets/profile_light.png +0 -0
  20. solar_radio_image_viewer/assets/rectangle_selection.png +0 -0
  21. solar_radio_image_viewer/assets/rectangle_selection_light.png +0 -0
  22. solar_radio_image_viewer/assets/reset.png +0 -0
  23. solar_radio_image_viewer/assets/reset_light.png +0 -0
  24. solar_radio_image_viewer/assets/ruler.png +0 -0
  25. solar_radio_image_viewer/assets/ruler_light.png +0 -0
  26. solar_radio_image_viewer/assets/search.png +0 -0
  27. solar_radio_image_viewer/assets/search_light.png +0 -0
  28. solar_radio_image_viewer/assets/settings.png +0 -0
  29. solar_radio_image_viewer/assets/settings_light.png +0 -0
  30. solar_radio_image_viewer/assets/splash.fits +0 -0
  31. solar_radio_image_viewer/assets/zoom_60arcmin.png +0 -0
  32. solar_radio_image_viewer/assets/zoom_60arcmin_light.png +0 -0
  33. solar_radio_image_viewer/assets/zoom_in.png +0 -0
  34. solar_radio_image_viewer/assets/zoom_in_light.png +0 -0
  35. solar_radio_image_viewer/assets/zoom_out.png +0 -0
  36. solar_radio_image_viewer/assets/zoom_out_light.png +0 -0
  37. solar_radio_image_viewer/create_video.py +1345 -0
  38. solar_radio_image_viewer/dialogs.py +2665 -0
  39. solar_radio_image_viewer/from_simpl/__init__.py +184 -0
  40. solar_radio_image_viewer/from_simpl/caltable_visualizer.py +1001 -0
  41. solar_radio_image_viewer/from_simpl/dynamic_spectra_dialog.py +332 -0
  42. solar_radio_image_viewer/from_simpl/make_dynamic_spectra.py +351 -0
  43. solar_radio_image_viewer/from_simpl/pipeline_logger_gui.py +1232 -0
  44. solar_radio_image_viewer/from_simpl/simpl_theme.py +352 -0
  45. solar_radio_image_viewer/from_simpl/utils.py +984 -0
  46. solar_radio_image_viewer/from_simpl/view_dynamic_spectra_GUI.py +1975 -0
  47. solar_radio_image_viewer/helioprojective.py +1916 -0
  48. solar_radio_image_viewer/helioprojective_viewer.py +817 -0
  49. solar_radio_image_viewer/helioviewer_browser.py +1514 -0
  50. solar_radio_image_viewer/main.py +148 -0
  51. solar_radio_image_viewer/move_phasecenter.py +1269 -0
  52. solar_radio_image_viewer/napari_viewer.py +368 -0
  53. solar_radio_image_viewer/noaa_events/__init__.py +32 -0
  54. solar_radio_image_viewer/noaa_events/noaa_events.py +430 -0
  55. solar_radio_image_viewer/noaa_events/noaa_events_gui.py +1922 -0
  56. solar_radio_image_viewer/norms.py +293 -0
  57. solar_radio_image_viewer/radio_data_downloader/__init__.py +25 -0
  58. solar_radio_image_viewer/radio_data_downloader/radio_data_downloader.py +756 -0
  59. solar_radio_image_viewer/radio_data_downloader/radio_data_downloader_gui.py +528 -0
  60. solar_radio_image_viewer/searchable_combobox.py +220 -0
  61. solar_radio_image_viewer/solar_context/__init__.py +41 -0
  62. solar_radio_image_viewer/solar_context/active_regions.py +371 -0
  63. solar_radio_image_viewer/solar_context/cme_alerts.py +234 -0
  64. solar_radio_image_viewer/solar_context/context_images.py +297 -0
  65. solar_radio_image_viewer/solar_context/realtime_data.py +528 -0
  66. solar_radio_image_viewer/solar_data_downloader/__init__.py +35 -0
  67. solar_radio_image_viewer/solar_data_downloader/solar_data_downloader.py +1667 -0
  68. solar_radio_image_viewer/solar_data_downloader/solar_data_downloader_cli.py +901 -0
  69. solar_radio_image_viewer/solar_data_downloader/solar_data_downloader_gui.py +1210 -0
  70. solar_radio_image_viewer/styles.py +643 -0
  71. solar_radio_image_viewer/utils/__init__.py +32 -0
  72. solar_radio_image_viewer/utils/rate_limiter.py +255 -0
  73. solar_radio_image_viewer/utils.py +952 -0
  74. solar_radio_image_viewer/video_dialog.py +2629 -0
  75. solar_radio_image_viewer/video_utils.py +656 -0
  76. solar_radio_image_viewer/viewer.py +11174 -0
  77. solarviewer-1.0.2.dist-info/METADATA +343 -0
  78. solarviewer-1.0.2.dist-info/RECORD +82 -0
  79. solarviewer-1.0.2.dist-info/WHEEL +5 -0
  80. solarviewer-1.0.2.dist-info/entry_points.txt +8 -0
  81. solarviewer-1.0.2.dist-info/licenses/LICENSE +21 -0
  82. solarviewer-1.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,343 @@
1
+ Metadata-Version: 2.4
2
+ Name: solarviewer
3
+ Version: 1.0.2
4
+ Summary: SolarViewer - A comprehensive tool for visualizing and analyzing solar radio images
5
+ Home-page: https://github.com/dey-soham/solarviewer/
6
+ Author: Soham Dey
7
+ Author-email: sohamd943@gmail.com
8
+ Project-URL: Documentation, https://github.com/dey-soham/solarviewer/wiki
9
+ Project-URL: Source, https://github.com/dey-soham/solarviewer/
10
+ Project-URL: Tracker, https://github.com/dey-soham/solarviewer/issues
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.7
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Requires-Python: >=3.7
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ Requires-Dist: setuptools<81
26
+ Requires-Dist: PyQt5>=5.15.0
27
+ Requires-Dist: matplotlib>=3.5.0
28
+ Requires-Dist: numpy>=1.20.0
29
+ Requires-Dist: astropy>=5.0.0
30
+ Requires-Dist: scipy>=1.7.0
31
+ Requires-Dist: drms
32
+ Requires-Dist: casatools>=6.4.0
33
+ Requires-Dist: casatasks>=6.4.0
34
+ Requires-Dist: napari>=0.4.16
35
+ Requires-Dist: napari-console>=0.0.8
36
+ Requires-Dist: napari-svg>=0.1.6
37
+ Requires-Dist: vispy>=0.11.0
38
+ Requires-Dist: sunpy[image,map,net,timeseries,visualization]>=5.0.0
39
+ Requires-Dist: pillow
40
+ Requires-Dist: python-casacore
41
+ Requires-Dist: seaborn
42
+ Requires-Dist: opencv-python-headless
43
+ Requires-Dist: dask>=2022.1.0
44
+ Requires-Dist: zarr>=2.11.0
45
+ Requires-Dist: pyqt5-sip>=12.9.0
46
+ Requires-Dist: qtpy>=2.0.0
47
+ Requires-Dist: imageio>=2.16.0
48
+ Requires-Dist: tifffile>=2022.2.2
49
+ Requires-Dist: aiapy>=0.1.0
50
+ Requires-Dist: imageio[ffmpeg]
51
+ Dynamic: author
52
+ Dynamic: author-email
53
+ Dynamic: classifier
54
+ Dynamic: description
55
+ Dynamic: description-content-type
56
+ Dynamic: home-page
57
+ Dynamic: license-file
58
+ Dynamic: project-url
59
+ Dynamic: requires-dist
60
+ Dynamic: requires-python
61
+ Dynamic: summary
62
+
63
+ <h1 align="center">🌞 SolarViewer</h1>
64
+
65
+ <p align="center">
66
+ <strong>A comprehensive Python toolkit for visualizing and analyzing solar radio images</strong>
67
+ </p>
68
+
69
+ <p align="center">
70
+ <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.7%2B-blue?logo=python&logoColor=white" alt="Python 3.7+"></a>
71
+ <a href="https://pypi.org/project/solarviewer/"><img src="https://img.shields.io/pypi/v/solarviewer?color=blue&logo=pypi&logoColor=white" alt="PyPI version"></a>
72
+ <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License: MIT"></a>
73
+ <a href="https://github.com/dey-soham/solarviewer"><img src="https://img.shields.io/github/stars/dey-soham/solarviewer?style=social" alt="GitHub stars"></a>
74
+ </p>
75
+
76
+ <p align="center">
77
+ <a href="#-features">Features</a> •
78
+ <a href="#-installation">Installation</a> •
79
+ <a href="#-quick-start">Quick Start</a> •
80
+ <a href="#-command-line-interface">CLI</a> •
81
+ <a href="#-documentation">Documentation</a> •
82
+ <a href="#-contributing">Contributing</a>
83
+ </p>
84
+
85
+ ---
86
+
87
+ ## ✨ Features
88
+
89
+ **SolarViewer** is a feature-rich desktop application designed for solar physics research. It supports FITS and CASA image formats with specialized tools for radio astronomy.
90
+
91
+ ### 🔭 Multiple Viewer Modes
92
+
93
+ | Viewer | Description |
94
+ |--------|-------------|
95
+ | **Standard Viewer** | Full-featured multi-tab interface with comprehensive analysis tools, including helioprojective coordinate support |
96
+ | **Napari Viewer** | Lightweight, fast viewer for quick visualization |
97
+
98
+ ### 📊 Analysis & Visualization
99
+
100
+ - **Statistical Analysis** — Detailed statistics for images and selected regions
101
+ - **2D Gaussian Fitting** — Fit Gaussian profiles to radio sources
102
+ - **Elliptical Ring Fitting** — Model ring-shaped emission features
103
+ - **Region Selection** — Rectangle and ellipse tools for region-of-interest analysis
104
+ - **Multiple Colormaps** — Choose from scientific colormaps with linear, log, sqrt, and custom stretches
105
+ - **Stokes Parameters** — Full polarization support (I, Q, U, V, L, Lfrac, Vfrac, PANG)
106
+
107
+ ### 🌐 Data Access & Downloads
108
+
109
+ - **Helioviewer Browser** — Browse and download images from NASA's Helioviewer API with time-series playback
110
+ - **Solar Data Downloader** — Download data from SDO/AIA, IRIS, SOHO, GOES SUVI, STEREO, and GONG
111
+ - **Radio Data Downloader** — Access solar radio observation archives
112
+ - **Solar Activity Viewer** — Browse solar events (flares, CMEs, active regions) with real-time data
113
+
114
+ ### 🎬 Video Creation
115
+
116
+ - **Time-lapse Videos** — Create MP4 videos from image sequences
117
+ - **Contour Overlays** — Overlay radio contours on EUV/optical base images
118
+ - **Custom Annotations** — Add timestamps, colorbars, and min/max plots
119
+ - **Preview Mode** — Real-time preview before rendering
120
+
121
+ ### 🔧 Advanced Tools
122
+
123
+ - **LOFAR/SIMPL Support** — Calibration table visualizer, dynamic spectra viewer, pipeline log viewer
124
+ - **Coordinate Transformations** — Convert between RA/Dec and helioprojective coordinates
125
+ - **Phase Center Tool** — Shift image phase centers for radio interferometry data
126
+ - **Export Options** — Export to FITS, CASA image, PNG, and region files
127
+
128
+ ---
129
+
130
+ ## 📦 Installation
131
+
132
+ ### Prerequisites
133
+
134
+ - Python 3.7 or higher
135
+ - pip package manager
136
+ - **CASA data directory**: The `~/.casa/data` folder must exist for CASA to work properly. Create it with:
137
+ ```bash
138
+ mkdir -p ~/.casa/data
139
+ ```
140
+
141
+ > **Note**: No other manual installation is required — all dependencies are installed automatically via pip.
142
+
143
+ ### Install from PyPI
144
+
145
+ ```bash
146
+ pip install solarviewer
147
+ ```
148
+
149
+ ### Install from Source
150
+
151
+ ```bash
152
+ git clone https://github.com/dey-soham/solarviewer.git
153
+ cd solarviewer
154
+ pip install -e .
155
+ ```
156
+
157
+ ### Dependencies
158
+
159
+ <details>
160
+ <summary>View core dependencies</summary>
161
+
162
+ | Package | Version | Purpose |
163
+ |---------|---------|---------|
164
+ | PyQt5 | ≥5.15.0 | GUI framework |
165
+ | matplotlib | ≥3.5.0 | Plotting and visualization |
166
+ | numpy | ≥1.20.0 | Numerical operations |
167
+ | astropy | ≥5.0.0 | FITS handling, coordinates |
168
+ | scipy | ≥1.7.0 | Scientific computing |
169
+ | sunpy | ≥5.0.0 | Solar physics tools |
170
+ | casatools | ≥6.4.0 | CASA image support |
171
+ | casatasks | ≥6.4.0 | CASA tasks |
172
+ | napari | ≥0.4.16 | Fast image viewer |
173
+
174
+ </details>
175
+
176
+ ---
177
+
178
+ ## 🚀 Quick Start
179
+
180
+ ### Launch the Viewer
181
+
182
+ ```bash
183
+ # Standard viewer
184
+ solarviewer
185
+ # or
186
+ sv
187
+
188
+ # Open a specific file
189
+ solarviewer path/to/image.fits
190
+
191
+ # Fast Napari viewer
192
+ solarviewer -f path/to/image.fits
193
+ ```
194
+
195
+ ### LOFAR Tools
196
+
197
+ ```bash
198
+ viewcaltable # Calibration table visualizer
199
+ viewds # Dynamic spectra viewer
200
+ viewlogs # Pipeline log viewer
201
+ ```
202
+
203
+ ### Other Tools
204
+
205
+ ```bash
206
+ viewsolaractivity # Solar events browser
207
+ heliobrowser # Helioviewer browser
208
+ ```
209
+ ---
210
+
211
+ ## 💻 Command Line Interface
212
+
213
+ ### Standard Viewer (`solarviewer` / `sv`)
214
+
215
+ ```bash
216
+ solarviewer [OPTIONS] [IMAGEFILE]
217
+
218
+ Options:
219
+ -f, --fast Launch fast Napari viewer
220
+ --light Start with light theme
221
+ -v, --version Show version and exit
222
+ -h, --help Show help message
223
+ ```
224
+
225
+ ---
226
+
227
+ ## 📚 Documentation
228
+
229
+ ### User Interface Overview
230
+
231
+ <details>
232
+ <summary><b>Standard Viewer Controls</b></summary>
233
+
234
+ #### File Controls
235
+ - **Open Directory** — Load a folder of solar radio images
236
+ - **Open FITS File** — Load a single FITS file
237
+ - **Export Figure** — Save current view as image
238
+ - **Export as FITS** — Export data as FITS file
239
+
240
+ #### Display Controls
241
+ - **Colormap** — Choose visualization colormap
242
+ - **Stretch** — Linear, log, sqrt, power-law options
243
+ - **Gamma** — Adjust power-law exponent
244
+ - **Min/Max** — Manual or auto display range
245
+
246
+ #### Region Tools
247
+ - **Rectangle/Ellipse Selection** — Select regions for analysis
248
+ - **Export Region** — Save as CASA region file
249
+ - **Export Sub-image** — Extract region as new image
250
+
251
+ #### Analysis Tools
252
+ - **Fit 2D Gaussian** — Gaussian source fitting
253
+ - **Fit Elliptical Ring** — Ring model fitting
254
+ - **Image Statistics** — Full image statistics
255
+ - **Region Statistics** — Selected region statistics
256
+
257
+ </details>
258
+
259
+ ---
260
+
261
+ ## 🏗️ Project Structure
262
+
263
+ ```
264
+ solarviewer/
265
+ ├── solar_radio_image_viewer/
266
+ │ ├── main.py # Entry point
267
+ │ ├── viewer.py # Standard viewer
268
+ │ ├── helioprojective.py # Coordinate conversions
269
+ │ ├── helioprojective_viewer.py
270
+ │ ├── helioviewer_browser.py # Helioviewer API browser
271
+ │ ├── napari_viewer.py # Fast viewer
272
+ │ ├── video_dialog.py # Video creation UI
273
+ │ ├── create_video.py # Video rendering
274
+ │ ├── noaa_events/ # Solar events browser
275
+ │ ├── solar_data_downloader/ # SDO/AIA, IRIS, etc.
276
+ │ ├── radio_data_downloader/ # Radio data archives
277
+ │ ├── solar_context/ # Real-time solar data
278
+ │ ├── from_simpl/ # LOFAR/SIMPL tools
279
+ │ ├── utils.py # Utility functions
280
+ │ └── styles.py # UI themes (light/dark)
281
+ ├── setup.py
282
+ ├── requirements.txt
283
+ └── README.md
284
+ ```
285
+
286
+ ---
287
+
288
+ ## 🤝 Contributing
289
+
290
+ Contributions are welcome! Whether you're fixing bugs, adding features, or improving documentation, we appreciate your help.
291
+
292
+ 1. Fork the repository
293
+ 2. Create a feature branch (`git checkout -b feature/amazing-feature`)
294
+ 3. Commit your changes (`git commit -m 'Add amazing feature'`)
295
+ 4. Push to the branch (`git push origin feature/amazing-feature`)
296
+ 5. Open a Pull Request
297
+
298
+ ---
299
+
300
+ ## 📄 License
301
+
302
+ This project is licensed under the **MIT License** — see the [LICENSE](LICENSE) file for details.
303
+
304
+ ---
305
+
306
+ ## 🙏 Acknowledgments
307
+
308
+ This project builds on the excellent work of the solar physics and radio astronomy communities:
309
+
310
+ ### Core Libraries
311
+ - [**SunPy**](https://sunpy.org/) — Solar physics data analysis in Python
312
+ - [**Astropy**](https://www.astropy.org/) — Core astronomy library for FITS, coordinates, and units
313
+ - [**CASA**](https://casa.nrao.edu/) — Common Astronomy Software Applications for radio astronomy
314
+ - [**Napari**](https://napari.org/) — Fast n-dimensional image viewer
315
+
316
+ ### GUI & Visualization
317
+ - [**PyQt5**](https://www.riverbankcomputing.com/software/pyqt/) — Python bindings for Qt GUI framework
318
+ - [**Matplotlib**](https://matplotlib.org/) — Publication-quality plotting
319
+ - [**NumPy**](https://numpy.org/) — Fundamental package for scientific computing
320
+ - [**SciPy**](https://scipy.org/) — Scientific algorithms and mathematics
321
+
322
+ ### Data Sources & APIs
323
+ - [**Helioviewer**](https://helioviewer.org/) — NASA/ESA solar image browser and API
324
+ - [**SolarMonitor**](https://solarmonitor.org/) — Real-time solar activity monitoring
325
+ - [**NOAA SWPC**](https://www.swpc.noaa.gov/) — Space Weather Prediction Center solar event data
326
+ - [**SDO/AIA**](https://sdo.gsfc.nasa.gov/) — Solar Dynamics Observatory
327
+ - [**JSOC**](http://jsoc.stanford.edu/) — Joint Science Operations Center for SDO data
328
+ - [**VSO**](https://sdac.virtualsolar.org/) — Virtual Solar Observatory
329
+
330
+ ### Community
331
+ - The solar physics group at the National Centre for Radio Astrophysics for feedback and testing
332
+
333
+ ---
334
+
335
+ ## 👨‍💻 Author
336
+
337
+ **Soham Dey** — [sohamd943@gmail.com](mailto:sohamd943@gmail.com) — [@dey-soham](https://github.com/dey-soham)
338
+
339
+ ---
340
+
341
+ <p align="center">
342
+ <sub>Built with ❤️ for solar physics research</sub>
343
+ </p>
@@ -0,0 +1,82 @@
1
+ solar_radio_image_viewer/__init__.py,sha256=0rmSPPqw_uIkjcs2p62R6b_gkjAVBVWX3pdaEm0Itjk,409
2
+ solar_radio_image_viewer/create_video.py,sha256=ZGAHZTV317SEldtWJF-wu7tiyk37nbv-NW1LADXlZ_Q,52981
3
+ solar_radio_image_viewer/dialogs.py,sha256=rrU_eAnZBjvdYNfr48Q04-UMYJtFvHEZX2JCEsNAEIo,111879
4
+ solar_radio_image_viewer/helioprojective.py,sha256=eFR1x-MBglfO0ktEJpeXi7IQMEil_wRQdbR3VlrlfVE,73171
5
+ solar_radio_image_viewer/helioprojective_viewer.py,sha256=bj1VqcPtwTRAH3ODZRQpB0BIxgS1a2hycR_T51djroY,27699
6
+ solar_radio_image_viewer/helioviewer_browser.py,sha256=wg7gWspkDsPHhNZSJwC9OCqJuqvXpYLvSWt1mWwE4HU,58640
7
+ solar_radio_image_viewer/main.py,sha256=ikHseBq9bkYSd6EJ5nUUX3NbxJbsKTjv8rSeCIRSvVs,5199
8
+ solar_radio_image_viewer/move_phasecenter.py,sha256=DkOvzQAEgSTLQ8QSPue8LgeTA1LC8oHs_ywuHh7Yl4Q,44619
9
+ solar_radio_image_viewer/napari_viewer.py,sha256=Ix68YF2wmlk5bThjaqBeMbMJrfhalBw3NTyYbI9sJ5Q,12034
10
+ solar_radio_image_viewer/norms.py,sha256=en0ODRupt2Rqk9w7dlguXoosX1kaTcqTL9a8PA-E3bI,10739
11
+ solar_radio_image_viewer/searchable_combobox.py,sha256=wvRLcnDyB22yF0v3nQnrjQOI-MIidvYRoIFV4cmGDqw,8040
12
+ solar_radio_image_viewer/styles.py,sha256=WTs4_oU4YTGwQoaD_FPGL3Vc7XzckRTJLIscGzAEiqg,17655
13
+ solar_radio_image_viewer/utils.py,sha256=xJW_u3TiVBIHdR__YAwIjGlwTRqgfrgBs0r4_fQQvlM,36218
14
+ solar_radio_image_viewer/video_dialog.py,sha256=f746hs3UIMpSMfYZzmaN67eCWAw5V6ODEXcxt8OnPqs,109145
15
+ solar_radio_image_viewer/video_utils.py,sha256=5YksXVUCCAtqUNM4-jVpa8wuThAodG9WcJLMeWf3GXQ,24471
16
+ solar_radio_image_viewer/viewer.py,sha256=XyArHZYApR54BTMogN0Gqcq_zY4wh40spPYxm_jXLkM,450503
17
+ solar_radio_image_viewer/assets/add_tab_default.png,sha256=pF6OjArcaoR-dNzI3mdEMC_m6zR9jbOPMtiQD5bheUQ,371
18
+ solar_radio_image_viewer/assets/add_tab_default_light.png,sha256=R4L0CzjolxrqH8_LxFGsqN-8t5WGJ6sPOk2Goei50co,592
19
+ solar_radio_image_viewer/assets/add_tab_hover.png,sha256=oag2-kxk1VPhz_aWFypKAWIWPMhy4lE95KrQjs0PWCc,493
20
+ solar_radio_image_viewer/assets/add_tab_hover_light.png,sha256=2xb3a1QFpmzQVETpNUjDFr9WCl5yaMNVOM16Nn5B_j4,683
21
+ solar_radio_image_viewer/assets/browse.png,sha256=5aNQIyLbcqyxAkNHuJeY-Y55ZEmhrK_2vLgTICMBZ0A,947
22
+ solar_radio_image_viewer/assets/browse_light.png,sha256=pt8Y5gSxMUOb_-cz3h9GnLsUd1s_iCd5knL4h6cKJk8,1181
23
+ solar_radio_image_viewer/assets/close_tab_default.png,sha256=7ez2SCGxSTjjyE6dzsfpMIRGhBynzJhLdaXYshLLOE4,696
24
+ solar_radio_image_viewer/assets/close_tab_default_light.png,sha256=ynSCVkFzo7ZY-fg9PSld_RoxP5DPbm6B2O48V9N9STc,1062
25
+ solar_radio_image_viewer/assets/close_tab_hover.png,sha256=evdo9PJRRLETMzA_rs2mo3gRaC2OEJf00ImfxNdiuJc,1152
26
+ solar_radio_image_viewer/assets/close_tab_hover_light.png,sha256=Er-q2cBjMyay5PfBi19VdwXlxkeZiK58JTSJ9Tj_Hsc,1583
27
+ solar_radio_image_viewer/assets/ellipse_selection.png,sha256=9S2iOSwr2Jndfmb6w6C2UCLvEKEA3ciyv_CELW4QL_k,1345
28
+ solar_radio_image_viewer/assets/ellipse_selection_light.png,sha256=u9oK90qJncfGkATfklIA3m4I9Rb5ieYqMBBBgiG5E1U,1770
29
+ solar_radio_image_viewer/assets/icons8-ellipse-90.png,sha256=9S2iOSwr2Jndfmb6w6C2UCLvEKEA3ciyv_CELW4QL_k,1345
30
+ solar_radio_image_viewer/assets/icons8-ellipse-90_light.png,sha256=u9oK90qJncfGkATfklIA3m4I9Rb5ieYqMBBBgiG5E1U,1770
31
+ solar_radio_image_viewer/assets/icons8-info-90.png,sha256=WjcDTCk8rANnA44OYaT44NHBVQXfakiBgVDZiL8XJLQ,1078
32
+ solar_radio_image_viewer/assets/icons8-info-90_light.png,sha256=qFyFLwqFXNI6dILME2Trmk4UmbYg7lXIGyfwj02Ks18,1467
33
+ solar_radio_image_viewer/assets/profile.png,sha256=UmxRQkNkWDkXRtDwQ-BSUmGHI537MpBzoZKWWYDxNaE,527
34
+ solar_radio_image_viewer/assets/profile_light.png,sha256=t9JZN4JCuDHjJFbzdbz8ma8yv-AJ1o16MAKCuIPQBe8,532
35
+ solar_radio_image_viewer/assets/rectangle_selection.png,sha256=CbukoXXJ-cJE_r8aFf3D9ho0ryqgua76EgyN_eztEek,528
36
+ solar_radio_image_viewer/assets/rectangle_selection_light.png,sha256=Ib3LOEsXZzE94w9XlgpbwvA3dTZeBQHQBmbXWzI4QDQ,715
37
+ solar_radio_image_viewer/assets/reset.png,sha256=oTvRrzcKV4admWQAPIA29_bGTz8TceTPxQveNy-X-4s,1433
38
+ solar_radio_image_viewer/assets/reset_light.png,sha256=TFqr8diYBhnGVYdZe3JrTxrA3VrfwFsrabadbw-bLp4,1853
39
+ solar_radio_image_viewer/assets/ruler.png,sha256=rHnBFpJLpM4FKfEVIZBsVur9i3tfGNDG5oPVFnUrlWc,515
40
+ solar_radio_image_viewer/assets/ruler_light.png,sha256=h_eo8MRZV-EtajtzdhqCh_Fh6c0ZfsM_YYSAUS-pPfk,520
41
+ solar_radio_image_viewer/assets/search.png,sha256=frUXQU9idgOu28v6IRmN7IEfAuca5NvQqXKenUuA2-w,1312
42
+ solar_radio_image_viewer/assets/search_light.png,sha256=leQs_0li6UDQwogEOnKEh1r3M8uhroytofaSkzp0P4Y,1777
43
+ solar_radio_image_viewer/assets/settings.png,sha256=pB_qJXpjwp418LbwUgIHf1geacaHx9q9UQtZWsNr5U0,1865
44
+ solar_radio_image_viewer/assets/settings_light.png,sha256=5g2QeLc_S2JJ4Nsr8DedoodJqXvkn5KQeuUZXnv0-s0,2433
45
+ solar_radio_image_viewer/assets/splash.fits,sha256=A6ZpFNZLGF97qpo86cHize5tRWiVPsxdowCCFNrD8pw,4199040
46
+ solar_radio_image_viewer/assets/zoom_60arcmin.png,sha256=x27dXsqWImdJxxoqDLevsfRK2GqZXf4Qptysu7ZUrLM,551
47
+ solar_radio_image_viewer/assets/zoom_60arcmin_light.png,sha256=590RxCK1YN5Ph4GwtsW8M77oGp8-ovvyClL77YkqWg4,699
48
+ solar_radio_image_viewer/assets/zoom_in.png,sha256=ObF9gCuzF_antUMh4AeACCFojpXG5Hk4qyZAXoj_yeg,1458
49
+ solar_radio_image_viewer/assets/zoom_in_light.png,sha256=mQxdhPgkkl-FPKfjzCl_DtZGA9XfGiizAUCdJJ6dCtI,1937
50
+ solar_radio_image_viewer/assets/zoom_out.png,sha256=9loLCNX6L2Qk1KLwM7Ip3DGscRpcq32_qbcCmEh_hWk,1351
51
+ solar_radio_image_viewer/assets/zoom_out_light.png,sha256=p8O5Eb9L7eVYAYRXUO8-WOoI2YNIeCYZACl5IyO-nVM,1874
52
+ solar_radio_image_viewer/from_simpl/__init__.py,sha256=hnvsCUl1wu6b9j4EDMc388eALYO3Rbz46GsZppu1lTI,5529
53
+ solar_radio_image_viewer/from_simpl/caltable_visualizer.py,sha256=ci_IxM4eHgSzZU6fwa7h_uOulTI-7Vv3ujkTRY2tunw,41523
54
+ solar_radio_image_viewer/from_simpl/dynamic_spectra_dialog.py,sha256=sdZ_ahfQvQdTM8vRtFGodUMfzZYsrUrmCmft8LX6WQ0,12526
55
+ solar_radio_image_viewer/from_simpl/make_dynamic_spectra.py,sha256=XmdE5Vqi3_Z8j9YAhOj3LBk_cO3-roy4D6S1U_Ixzbk,14883
56
+ solar_radio_image_viewer/from_simpl/pipeline_logger_gui.py,sha256=2-ZkoqUjx_piQbPNTB7JsXP_l7nX5GBG3XV5yowl4dE,49950
57
+ solar_radio_image_viewer/from_simpl/simpl_theme.py,sha256=T6C4_ywkayjQiKA_8m2BPceQytraviwfh0C1F5NC3KA,9867
58
+ solar_radio_image_viewer/from_simpl/utils.py,sha256=Gw4yw5UXGQ6EX6MLzhviEJI7CSMGyhcZ872h3oheUE0,39079
59
+ solar_radio_image_viewer/from_simpl/view_dynamic_spectra_GUI.py,sha256=8c0aiuXLGTWonKwE1lzbr5sFA7WtifpH3_WaAiW8RlE,80489
60
+ solar_radio_image_viewer/noaa_events/__init__.py,sha256=xHoe5uZGoekP6nyuB6xKaSUjFKokvnxNpudLEBbcgBo,621
61
+ solar_radio_image_viewer/noaa_events/noaa_events.py,sha256=NZZJo4ugwbEiHw8vkQqrAlIe_fPCjU65lGFQnbDZRls,13951
62
+ solar_radio_image_viewer/noaa_events/noaa_events_gui.py,sha256=JP13DtSsuevO2OoGGHTEryP-xGmWSq_jeWVz_DMWd6g,78664
63
+ solar_radio_image_viewer/radio_data_downloader/__init__.py,sha256=RLCrfovaz7ZW0MiieEeOjjWgK8mFAcAZFVxAljywwBI,586
64
+ solar_radio_image_viewer/radio_data_downloader/radio_data_downloader.py,sha256=uKtLlZcvH-hzS3I-btIS-UCBNaCH8u8CZt_v2mdmUQU,26487
65
+ solar_radio_image_viewer/radio_data_downloader/radio_data_downloader_gui.py,sha256=t7f6efP5NrVjOWphYzoqvV-nCpL3f-RSGTLnbQJPDBU,20068
66
+ solar_radio_image_viewer/solar_context/__init__.py,sha256=_qR5sr574N3iu2aQ4HIyi_sJC3C0KCdaoOnT0HJvOHU,856
67
+ solar_radio_image_viewer/solar_context/active_regions.py,sha256=-PIbYc_c0Jzdhq0e2NmGryxLL3SVOD1WNTjhs7OcBEY,11798
68
+ solar_radio_image_viewer/solar_context/cme_alerts.py,sha256=WfVi1ru020-YyD-jPQloGYHXL8nB-cSOfw0ANeDPJxg,8024
69
+ solar_radio_image_viewer/solar_context/context_images.py,sha256=gGPkSb2_Gs3w0PrkdA9zRR0HKyc9Ypm23v7AYWkSDsI,10951
70
+ solar_radio_image_viewer/solar_context/realtime_data.py,sha256=6GM3B_my3-2kiceowQhOVD8UkRu7tesANxnuSvBZaxQ,17035
71
+ solar_radio_image_viewer/solar_data_downloader/__init__.py,sha256=7sIOcnIbY4EBx4EjeZfx5iItSxdlwINlwRCIaOHwzhM,899
72
+ solar_radio_image_viewer/solar_data_downloader/solar_data_downloader.py,sha256=sTM0-OgYR8FW_mDYsFUNdjTHjii61tkj_goUMvXbWiU,64372
73
+ solar_radio_image_viewer/solar_data_downloader/solar_data_downloader_cli.py,sha256=ydwbTu7AkFbJMW0c37tbK-enOPHmjtpYPcFbGnerCjM,29298
74
+ solar_radio_image_viewer/solar_data_downloader/solar_data_downloader_gui.py,sha256=trQyXW7Ht27LkhFBxfS854FiKLq4nzWuYzA8d83ydC0,48206
75
+ solar_radio_image_viewer/utils/__init__.py,sha256=-7p4RxDVPhjshSqt-404gLVAK1qI13CtM9Sz8LCDbzk,987
76
+ solar_radio_image_viewer/utils/rate_limiter.py,sha256=HKv33aaiFsVBdD8fCpLsCYJ8HZO7URODEH_CUFBnSSo,8805
77
+ solarviewer-1.0.2.dist-info/licenses/LICENSE,sha256=3zfvzVgyzBYmjg2UTtrHcru1TxICtXg1H8TfNWP7PSY,1080
78
+ solarviewer-1.0.2.dist-info/METADATA,sha256=OLwe4qqJUuphBm260KsYdUijyEM7W0TiUGQ_9P0lN40,11588
79
+ solarviewer-1.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
+ solarviewer-1.0.2.dist-info/entry_points.txt,sha256=PwP1qQZl3yk56eVO7pHDVpTM035pIqxz7TsJBoLFk_0,473
81
+ solarviewer-1.0.2.dist-info/top_level.txt,sha256=gi9O8KMLRN2oQk3lQTBt_krFUrw5N5gndnhlwbw0Zpw,25
82
+ solarviewer-1.0.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,8 @@
1
+ [console_scripts]
2
+ heliobrowser = solar_radio_image_viewer.helioviewer_browser:main
3
+ solarviewer = solar_radio_image_viewer.main:main
4
+ sv = solar_radio_image_viewer.main:main
5
+ viewcaltable = solar_radio_image_viewer.from_simpl.caltable_visualizer:main
6
+ viewds = solar_radio_image_viewer.from_simpl.view_dynamic_spectra_GUI:main
7
+ viewlogs = solar_radio_image_viewer.from_simpl.pipeline_logger_gui:main
8
+ viewsolaractivity = solar_radio_image_viewer.noaa_events.noaa_events_gui:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 SolarViewer Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ solar_radio_image_viewer