sunpy 5.0.2__tar.gz → 5.0.4__tar.gz

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 (734) hide show
  1. {sunpy-5.0.2 → sunpy-5.0.4}/CHANGELOG.rst +60 -1
  2. {sunpy-5.0.2 → sunpy-5.0.4}/MANIFEST.in +0 -1
  3. sunpy-5.0.4/PKG-INFO +382 -0
  4. sunpy-5.0.4/README.rst +108 -0
  5. {sunpy-5.0.2 → sunpy-5.0.4}/docs/conf.py +1 -3
  6. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/tests.rst +8 -1
  7. sunpy-5.0.4/docs/how_to/fix_map_metadata.rst +27 -0
  8. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/index.rst +1 -0
  9. {sunpy-5.0.2 → sunpy-5.0.4}/docs/index.rst +1 -1
  10. sunpy-5.0.4/docs/reference/map.rst +53 -0
  11. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/installation.rst +18 -14
  12. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/new_map_class.rst +1 -1
  13. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/acquiring_data/hek.rst +2 -2
  14. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/acquiring_data/index.rst +1 -1
  15. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/installation.rst +5 -3
  16. {sunpy-5.0.2 → sunpy-5.0.4}/examples/acquiring_data/downloading_cutouts.py +4 -5
  17. {sunpy-5.0.2 → sunpy-5.0.4}/examples/acquiring_data/fido_metadata_queries.py +5 -2
  18. {sunpy-5.0.2 → sunpy-5.0.4}/examples/acquiring_data/querying_and_loading_SHARP_data.py +3 -1
  19. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/map_resampling_and_superpixels.py +14 -12
  20. sunpy-5.0.4/examples/plotting/plot_rotated_rectangle.py +57 -0
  21. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/plotting_blank_map.py +9 -3
  22. {sunpy-5.0.2 → sunpy-5.0.4}/pyproject.toml +1 -3
  23. {sunpy-5.0.2 → sunpy-5.0.4}/setup.cfg +18 -8
  24. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/_version.py +2 -2
  25. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/sun.py +2 -2
  26. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_frameattributes.py +2 -2
  27. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_frames.py +2 -2
  28. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_sun.py +7 -7
  29. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_transformations.py +34 -0
  30. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_utils.py +7 -7
  31. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_wcs_utils.py +5 -5
  32. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/transformations.py +7 -7
  33. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/utils.py +2 -2
  34. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tests/test_database.py +1 -2
  35. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tests/test_tables.py +0 -14
  36. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/distro.py +2 -3
  37. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/inflect.py +1 -1
  38. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/image/tests/test_transform.py +4 -4
  39. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/tests/test_coordinate_frames.py +5 -6
  40. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/tests/test_genericmap.py +2 -2
  41. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/genx.py +2 -1
  42. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/test_genx.py +16 -16
  43. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/test_srs.py +12 -2
  44. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/header_helper.py +27 -1
  45. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/mapbase.py +13 -10
  46. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/maputils.py +14 -22
  47. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_map_factory.py +5 -8
  48. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_mapbase.py +30 -37
  49. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_maputils.py +1 -1
  50. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_fermi_gbm.py +1 -1
  51. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_noaa.py +8 -4
  52. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek/tests/test_hek.py +4 -4
  53. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/chaincode.py +1 -1
  54. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/hec.py +12 -3
  55. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/tests/test_helio.py +11 -0
  56. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/jsoc.py +50 -69
  57. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/tests/test_jsoc.py +45 -39
  58. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/strategies.py +6 -6
  59. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/figure_hashes_mpl_dev_ft_261_astropy_dev_animators_dev.json +49 -49
  60. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/helpers.py +4 -4
  61. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/self_test.py +1 -1
  62. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/tests/test_taiseconds.py +1 -1
  63. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/tests/test_time.py +2 -2
  64. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/tests/test_timerange.py +1 -1
  65. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/metadata.py +3 -5
  66. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/eve.py +1 -2
  67. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/goes.py +1 -1
  68. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/test_eve.py +4 -3
  69. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/tests/conftest.py +1 -1
  70. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/tests/test_timeseriesmetadata.py +1 -2
  71. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/timeseriesbase.py +2 -2
  72. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/decorators.py +1 -1
  73. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/exceptions.py +3 -0
  74. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/metadata.py +4 -1
  75. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_datatype_factory_base.py +10 -10
  76. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_sysinfo.py +2 -1
  77. sunpy-5.0.4/sunpy.egg-info/PKG-INFO +382 -0
  78. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy.egg-info/SOURCES.txt +3 -1
  79. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy.egg-info/requires.txt +44 -4
  80. sunpy-5.0.2/PKG-INFO +0 -270
  81. sunpy-5.0.2/README.rst +0 -94
  82. sunpy-5.0.2/docs/reference/map.rst +0 -147
  83. sunpy-5.0.2/sunpy.egg-info/PKG-INFO +0 -270
  84. {sunpy-5.0.2 → sunpy-5.0.4}/CITATION.rst +0 -0
  85. {sunpy-5.0.2 → sunpy-5.0.4}/LICENSE.rst +0 -0
  86. {sunpy-5.0.2 → sunpy-5.0.4}/docs/Makefile +0 -0
  87. /sunpy-5.0.2/docs/about.rst → /sunpy-5.0.4/docs/citation.rst +0 -0
  88. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/backports.rst +0 -0
  89. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/ci_jobs.rst +0 -0
  90. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/code_standards.rst +0 -0
  91. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/conda_for_dependencies.rst +0 -0
  92. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/dependencies.rst +0 -0
  93. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/documentation.rst +0 -0
  94. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/example_gallery.rst +0 -0
  95. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/funding.rst +0 -0
  96. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/images/actions_check_pr.png +0 -0
  97. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/images/actions_summary_check.png +0 -0
  98. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/images/checks.png +0 -0
  99. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/images/checks_pr.png +0 -0
  100. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/logger.rst +0 -0
  101. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/maintainer_workflow.rst +0 -0
  102. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/newcomers.rst +0 -0
  103. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/pr_checklist.rst +0 -0
  104. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/pr_review_procedure.rst +0 -0
  105. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/public_api.rst +0 -0
  106. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/remote_data_manager.rst +0 -0
  107. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/contents/units_quantities.rst +0 -0
  108. {sunpy-5.0.2 → sunpy-5.0.4}/docs/dev_guide/index.rst +0 -0
  109. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/coord_components.rst +0 -0
  110. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/create_a_map.rst +0 -0
  111. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/create_coords.rst +0 -0
  112. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/create_custom_map.rst +0 -0
  113. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/create_custom_timeseries.rst +0 -0
  114. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/parse_time.rst +0 -0
  115. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/remote_data_manager.rst +0 -0
  116. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/search_multiple_wavelengths.rst +0 -0
  117. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/search_vso.rst +0 -0
  118. {sunpy-5.0.2 → sunpy-5.0.4}/docs/how_to/transform_coords.rst +0 -0
  119. {sunpy-5.0.2 → sunpy-5.0.4}/docs/make.bat +0 -0
  120. {sunpy-5.0.2 → sunpy-5.0.4}/docs/nitpick-exceptions +0 -0
  121. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/coordinates/index.rst +0 -0
  122. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/customization.rst +0 -0
  123. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/data.rst +0 -0
  124. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/database.rst +0 -0
  125. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/image.rst +0 -0
  126. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/index.rst +0 -0
  127. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/io.rst +0 -0
  128. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/known_issues.rst +0 -0
  129. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/net.rst +0 -0
  130. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/physics.rst +0 -0
  131. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/ssw.rst +0 -0
  132. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/stability.rst +0 -0
  133. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/sun.rst +0 -0
  134. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/sunpy.rst +0 -0
  135. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/sunpy_stability.yaml +0 -0
  136. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/time.rst +0 -0
  137. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/timeseries.rst +0 -0
  138. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/troubleshooting.rst +0 -0
  139. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/util.rst +0 -0
  140. {sunpy-5.0.2 → sunpy-5.0.4}/docs/reference/visualization.rst +0 -0
  141. {sunpy-5.0.2 → sunpy-5.0.4}/docs/robots.txt +0 -0
  142. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/coordinates/carrington.rst +0 -0
  143. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/coordinates/index.rst +0 -0
  144. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/coordinates/rotatedsunframe.rst +0 -0
  145. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/coordinates/rsun.rst +0 -0
  146. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/coordinates/velocities.rst +0 -0
  147. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/coordinates/wcs.rst +0 -0
  148. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/custom_map_rotate.rst +0 -0
  149. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/extending_fido.rst +0 -0
  150. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/helioviewer.rst +0 -0
  151. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/history_comments.rst +0 -0
  152. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/index.rst +0 -0
  153. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/logger.rst +0 -0
  154. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/rsun.rst +0 -0
  155. {sunpy-5.0.2 → sunpy-5.0.4}/docs/topic_guide/timeseries_metadata.rst +0 -0
  156. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/acquiring_data/jsoc.rst +0 -0
  157. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/coordinates.rst +0 -0
  158. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/index.rst +0 -0
  159. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/maps.rst +0 -0
  160. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/time.rst +0 -0
  161. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/timeseries.rst +0 -0
  162. {sunpy-5.0.2 → sunpy-5.0.4}/docs/tutorial/units.rst +0 -0
  163. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/0.8.rst +0 -0
  164. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/0.9.rst +0 -0
  165. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/1.0.rst +0 -0
  166. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/1.1-wispr.png +0 -0
  167. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/1.1.rst +0 -0
  168. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/2.0.rst +0 -0
  169. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/2.1.rst +0 -0
  170. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/3.0.rst +0 -0
  171. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/3.1.rst +0 -0
  172. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/4.0.rst +0 -0
  173. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/4.1.rst +0 -0
  174. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/5.0.rst +0 -0
  175. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/changelog.rst +0 -0
  176. {sunpy-5.0.2 → sunpy-5.0.4}/docs/whatsnew/index.rst +0 -0
  177. {sunpy-5.0.2 → sunpy-5.0.4}/examples/README.txt +0 -0
  178. {sunpy-5.0.2 → sunpy-5.0.4}/examples/acquiring_data/README.txt +0 -0
  179. {sunpy-5.0.2 → sunpy-5.0.4}/examples/acquiring_data/querying_the_GOES_event_list.py +0 -0
  180. {sunpy-5.0.2 → sunpy-5.0.4}/examples/acquiring_data/search_cdaweb.py +0 -0
  181. {sunpy-5.0.2 → sunpy-5.0.4}/examples/computer_vision_techniques/README.txt +0 -0
  182. {sunpy-5.0.2 → sunpy-5.0.4}/examples/computer_vision_techniques/finding_masking_bright_pixels.py +0 -0
  183. {sunpy-5.0.2 → sunpy-5.0.4}/examples/computer_vision_techniques/loop_edge_enhance.py +0 -0
  184. {sunpy-5.0.2 → sunpy-5.0.4}/examples/computer_vision_techniques/mask_disk.py +0 -0
  185. {sunpy-5.0.2 → sunpy-5.0.4}/examples/computer_vision_techniques/off_limb_enhance.py +0 -0
  186. {sunpy-5.0.2 → sunpy-5.0.4}/examples/differential_rotation/README.txt +0 -0
  187. {sunpy-5.0.2 → sunpy-5.0.4}/examples/differential_rotation/comparing_rotation_models.py +0 -0
  188. {sunpy-5.0.2 → sunpy-5.0.4}/examples/differential_rotation/differentially_rotated_coordinate.py +0 -0
  189. {sunpy-5.0.2 → sunpy-5.0.4}/examples/differential_rotation/differentially_rotated_gridlines.py +0 -0
  190. {sunpy-5.0.2 → sunpy-5.0.4}/examples/differential_rotation/reprojected_map.py +0 -0
  191. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/README.txt +0 -0
  192. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/brightness_pixel_location.py +0 -0
  193. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/compare_rotation_results.py +0 -0
  194. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/composite_map_AIA_HMI.py +0 -0
  195. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/difference_images.py +0 -0
  196. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/hmi_contours_wcsaxes.py +0 -0
  197. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/image_bright_regions_gallery_example.py +0 -0
  198. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/lasco_mask.py +0 -0
  199. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/map_contouring.py +0 -0
  200. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/map_data_histogram.py +0 -0
  201. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/map_from_numpy_array.py +0 -0
  202. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/map_metadata_modification.py +0 -0
  203. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/map_rotation.py +0 -0
  204. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/map_segment.py +0 -0
  205. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/masking_hmi.py +0 -0
  206. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/plot_frameless_image.py +0 -0
  207. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map/submaps_and_cropping.py +0 -0
  208. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/README.txt +0 -0
  209. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/autoalign_aia_hmi.py +0 -0
  210. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/projection_custom_origin.py +0 -0
  211. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/reprojection_aia_euvi_mosaic.py +0 -0
  212. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/reprojection_align_aia_hmi.py +0 -0
  213. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/reprojection_carrington.py +0 -0
  214. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/reprojection_different_observers.py +0 -0
  215. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/reprojection_spherical_screen.py +0 -0
  216. {sunpy-5.0.2 → sunpy-5.0.4}/examples/map_transformations/upside_down_hmi.py +0 -0
  217. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/AIA_HMI_composite.py +0 -0
  218. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/README.txt +0 -0
  219. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/aia_example.py +0 -0
  220. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/arrayanimatorwcs.py +0 -0
  221. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/fading_between_maps.py +0 -0
  222. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/finding_local_peaks_in_solar_data.py +0 -0
  223. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/finegrained_plot.py +0 -0
  224. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/great_arc_example.py +0 -0
  225. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/grid_plotting.py +0 -0
  226. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/hmi_synoptic_maps.py +0 -0
  227. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/lasco_overlay.py +0 -0
  228. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/lat_lon_lines.py +0 -0
  229. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/limb_plotting.py +0 -0
  230. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/lineAnimator_examples.py +0 -0
  231. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/magnetogram_active_regions.py +0 -0
  232. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/map_editcolormap.py +0 -0
  233. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/masked_composite_plot.py +0 -0
  234. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/mplcairo_plotting.py +0 -0
  235. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/overplot_hek_polygon.py +0 -0
  236. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/plot_equator_prime_meridian.py +0 -0
  237. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/plot_rectangle.py +0 -0
  238. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/quadrangle.py +0 -0
  239. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/simple_differential_rotation.py +0 -0
  240. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/solar_cycle_example.py +0 -0
  241. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/sunpy_matplotlib_colormap.py +0 -0
  242. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/three_map_composite.py +0 -0
  243. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/wcsaxes_map_example.py +0 -0
  244. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/wcsaxes_plotting_example.py +0 -0
  245. {sunpy-5.0.2 → sunpy-5.0.4}/examples/plotting/xy_lims.py +0 -0
  246. {sunpy-5.0.2 → sunpy-5.0.4}/examples/saving_and_loading_data/README.txt +0 -0
  247. {sunpy-5.0.2 → sunpy-5.0.4}/examples/saving_and_loading_data/coordinates_in_asdf.py +0 -0
  248. {sunpy-5.0.2 → sunpy-5.0.4}/examples/saving_and_loading_data/genericmap_in_asdf.py +0 -0
  249. {sunpy-5.0.2 → sunpy-5.0.4}/examples/saving_and_loading_data/genericmap_in_fits.py +0 -0
  250. {sunpy-5.0.2 → sunpy-5.0.4}/examples/showcase/README.txt +0 -0
  251. {sunpy-5.0.2 → sunpy-5.0.4}/examples/showcase/hmi_cutout.py +0 -0
  252. {sunpy-5.0.2 → sunpy-5.0.4}/examples/showcase/stereoscopic_3d.py +0 -0
  253. {sunpy-5.0.2 → sunpy-5.0.4}/examples/showcase/where_is_stereo.py +0 -0
  254. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/README.txt +0 -0
  255. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/goes_hek_m25.py +0 -0
  256. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/goes_xrs_example.py +0 -0
  257. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/goes_xrs_nrt_data.py +0 -0
  258. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/power_spectra_example.py +0 -0
  259. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/timeseries_convolution_filter.py +0 -0
  260. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/timeseries_example.py +0 -0
  261. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/timeseries_peak_finding.py +0 -0
  262. {sunpy-5.0.2 → sunpy-5.0.4}/examples/time_series/timeseriesmetadata_example.py +0 -0
  263. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/AIA_limb_STEREO.py +0 -0
  264. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/AltAz_Coordinate_transform.py +0 -0
  265. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/ParkerSolarProbe_trajectory.py +0 -0
  266. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/README.txt +0 -0
  267. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/SDO_to_STEREO_Coordinate_Conversion.py +0 -0
  268. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/STEREO_SECCHI_starfield.py +0 -0
  269. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/getting_lasco_observer_location.py +0 -0
  270. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/getting_observer_location.py +0 -0
  271. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/map_slit_extraction.py +0 -0
  272. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/north_offset_frame.py +0 -0
  273. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/planet_locations.py +0 -0
  274. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/radec_to_hpc_map.py +0 -0
  275. {sunpy-5.0.2 → sunpy-5.0.4}/examples/units_and_coordinates/venus_transit.py +0 -0
  276. {sunpy-5.0.2 → sunpy-5.0.4}/licenses/ASTROPY.rst +0 -0
  277. {sunpy-5.0.2 → sunpy-5.0.4}/licenses/GLUE.rst +0 -0
  278. {sunpy-5.0.2 → sunpy-5.0.4}/licenses/README.rst +0 -0
  279. {sunpy-5.0.2 → sunpy-5.0.4}/licenses/SCIKIT-LEARN.rst +0 -0
  280. {sunpy-5.0.2 → sunpy-5.0.4}/licenses/TOWNCRIER.rst +0 -0
  281. {sunpy-5.0.2 → sunpy-5.0.4}/setup.py +0 -0
  282. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/CITATION.rst +0 -0
  283. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/__init__.py +0 -0
  284. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/conftest.py +0 -0
  285. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/__init__.py +0 -0
  286. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/ephemeris.py +0 -0
  287. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/frameattributes.py +0 -0
  288. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/frames.py +0 -0
  289. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/metaframes.py +0 -0
  290. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/offset_frame.py +0 -0
  291. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/__init__.py +0 -0
  292. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/helpers.py +0 -0
  293. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/strategies.py +0 -0
  294. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_ephemeris.py +0 -0
  295. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_metaframes.py +0 -0
  296. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/tests/test_offset_frame.py +0 -0
  297. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/coordinates/wcs_utils.py +0 -0
  298. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/__init__.py +0 -0
  299. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/_sample.py +0 -0
  300. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/__init__.py +0 -0
  301. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/cache.py +0 -0
  302. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/downloader.py +0 -0
  303. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/manager.py +0 -0
  304. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/storage.py +0 -0
  305. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/__init__.py +0 -0
  306. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/conftest.py +0 -0
  307. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/db_testdata.csv +0 -0
  308. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/mocks.py +0 -0
  309. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/test_cache.py +0 -0
  310. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/test_downloader.py +0 -0
  311. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/test_manager.py +0 -0
  312. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/data_manager/tests/test_storage.py +0 -0
  313. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/sample.py +0 -0
  314. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/sunpyrc +0 -0
  315. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/2013_05_13__16_54_06_137__SOHO_LASCO_C3_white-light.jp2 +0 -0
  316. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/2013_06_24__17_31_30_84__SDO_AIA_AIA_193.jp2 +0 -0
  317. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/20181209_180305_kcor_l2.header +0 -0
  318. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/2023_01_31__03_39_23_200__SDO_HMI_HMI_continuum.jp2 +0 -0
  319. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT/efz20040301.000010_s.fits +0 -0
  320. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT/efz20040301.010016_s.fits +0 -0
  321. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.000010_s.header +0 -0
  322. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.010016_s.header +0 -0
  323. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.020010_s.header +0 -0
  324. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.030011_s.header +0 -0
  325. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.040010_s.header +0 -0
  326. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.050010_s.header +0 -0
  327. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.060010_s.header +0 -0
  328. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.070014_s.header +0 -0
  329. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.080010_s.header +0 -0
  330. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.090010_s.header +0 -0
  331. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.100010_s.header +0 -0
  332. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.110010_s.header +0 -0
  333. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EIT_header/efz20040301.120010_s.header +0 -0
  334. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/EVE_L0CS_DIODES_1m_truncated.txt +0 -0
  335. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/FGMG4_20110214_030443.7.header +0 -0
  336. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/HinodeSOT.header +0 -0
  337. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/HinodeXRT.header +0 -0
  338. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/19960106SRS.txt +0 -0
  339. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/19960430SRS.txt +0 -0
  340. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/19960513SRS.txt +0 -0
  341. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20000922SRS.txt +0 -0
  342. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20000927SRS.txt +0 -0
  343. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20001001SRS.txt +0 -0
  344. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20020624SRS.txt +0 -0
  345. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20020628SRS.txt +0 -0
  346. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20100621SRS.txt +0 -0
  347. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20150101SRS.txt +0 -0
  348. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20150306SRS.txt +0 -0
  349. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SRS/20150906SRS.txt +0 -0
  350. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SWAP/resampled0_swap.header +0 -0
  351. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SWAP/resampled1_swap.header +0 -0
  352. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SWAP/resampled2_swap.header +0 -0
  353. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/SWAP/resampled3_swap.header +0 -0
  354. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/YohkohSXT.header +0 -0
  355. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/__init__.py +0 -0
  356. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/_generate_asdf_test.py +0 -0
  357. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/aia_171_level1.fits +0 -0
  358. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/aiamap_genericmap_1.0.0.asdf +0 -0
  359. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/aiamap_shift_genericmap_1.0.0.asdf +0 -0
  360. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/annotation_ppt.db +0 -0
  361. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/cor1_20090615_000500_s4c1A.header +0 -0
  362. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/dr_suvi-l2-ci195_g16_s20190403T093200Z_e20190403T093600Z_v1-0-0_rebinned.header +0 -0
  363. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/euvi_20090615_000900_n4euA_s.header +0 -0
  364. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/eve/eve_01.txt +0 -0
  365. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/eve/eve_02.txt +0 -0
  366. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/eve/eve_03.txt +0 -0
  367. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/eve/eve_04.txt +0 -0
  368. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/eve/eve_05.txt +0 -0
  369. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/eve_l1_esp_2011046_00_truncated.fits +0 -0
  370. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/gbm.fits +0 -0
  371. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/generated_sample.genx +0 -0
  372. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/go1520110607.fits +0 -0
  373. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/go1520120601.fits.gz +0 -0
  374. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/goes_13_leap_second.nc +0 -0
  375. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/gzip_fits_test.file +0 -0
  376. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/gzip_test.fit.gz +0 -0
  377. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/gzip_test.fits.gz +0 -0
  378. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/gzip_test.fts.gz +0 -0
  379. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/heliographic_phase_map.fits.gz +0 -0
  380. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/hi_20110910_114721_s7h2A.header +0 -0
  381. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/hmi_synoptic.header +0 -0
  382. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/hsi_image_20101016_191218.fits +0 -0
  383. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/hsi_obssumm_20120601_018_truncated.fits.gz +0 -0
  384. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/iris_l2_20130801_074720_4040000014_SJI_1400_t000.header +0 -0
  385. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/lasco_c2_25299383_s.header +0 -0
  386. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/lasco_c3.header +0 -0
  387. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/lyra_20150101-000000_lev3_std_truncated.fits.gz +0 -0
  388. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/mdi.fd_Ic.20101015_230100_TAI.data.header +0 -0
  389. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/mdi.fd_M_96m_lev182.20101015_191200_TAI.data.header +0 -0
  390. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/mdi_synoptic.header +0 -0
  391. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/observed-solar-cycle-indices-truncated.json +0 -0
  392. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/predicted-solar-cycle-truncated.json +0 -0
  393. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/psp_fld_l2_mag_rtn_1min_20200104_v02.cdf +0 -0
  394. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/resampled_hmi.fits +0 -0
  395. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/sci_gxrs-l2-irrad_g13_d20170901_truncated.nc +0 -0
  396. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/sci_gxrs-l2-irrad_g15_d20131028_truncated.nc +0 -0
  397. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/sci_xrsf-l2-avg1m_g15_d20190102_truncated.nc +0 -0
  398. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/sci_xrsf-l2-avg1m_g16_d20210101_truncated.nc +0 -0
  399. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/sci_xrsf-l2-flx1s_g17_d20201016_truncated.nc +0 -0
  400. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/seit_00171_fd_19961211_1900.header +0 -0
  401. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/solo_L1_eui-fsi304-image_20201021T145510206_V03.header +0 -0
  402. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/solo_L1_swa-pas-mom_20200706_V01.cdf +0 -0
  403. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/solo_L2_epd-ept-north-hcad_20200713_V02.cdf +0 -0
  404. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/swap_lv1_20140606_000113.header +0 -0
  405. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/tca110810_truncated +0 -0
  406. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/test_ana.fz +0 -0
  407. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/tsi20010130_025823_a2.header +0 -0
  408. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/waveunit/__init__.py +0 -0
  409. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/waveunit/medn_halph_fl_20050501_074655.header +0 -0
  410. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/waveunit/mq130812.084253.header +0 -0
  411. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/waveunit/na120701.091058.header +0 -0
  412. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/test/waveunit/svsm_e3100_S2_20110625_1856.header +0 -0
  413. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/tests/__init__.py +0 -0
  414. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/data/tests/test_sample.py +0 -0
  415. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/__init__.py +0 -0
  416. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/attrs.py +0 -0
  417. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/caching.py +0 -0
  418. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/commands.py +0 -0
  419. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/database.py +0 -0
  420. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tables.py +0 -0
  421. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tests/__init__.py +0 -0
  422. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tests/test_attrs.py +0 -0
  423. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tests/test_caching.py +0 -0
  424. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tests/test_commands.py +0 -0
  425. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/database/tests/test_table.txt +0 -0
  426. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/README.rst +0 -0
  427. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/__init__.py +0 -0
  428. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/appdirs.py +0 -0
  429. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/appdirs_license.txt +0 -0
  430. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/distro_license.rst +0 -0
  431. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/inflect_license.txt +0 -0
  432. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/parse.py +0 -0
  433. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/extern/parse_license.txt +0 -0
  434. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/image/__init__.py +0 -0
  435. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/image/resample.py +0 -0
  436. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/image/tests/__init__.py +0 -0
  437. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/image/tests/test_resample.py +0 -0
  438. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/image/transform.py +0 -0
  439. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/__init__.py +0 -0
  440. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/_cdf.py +0 -0
  441. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/_file_tools.py +0 -0
  442. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/_fits.py +0 -0
  443. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/_jp2.py +0 -0
  444. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/ana.py +0 -0
  445. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/cdf.py +0 -0
  446. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/file_tools.py +0 -0
  447. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/header.py +0 -0
  448. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/jp2.py +0 -0
  449. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/setup_package.py +0 -0
  450. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/__init__.py +0 -0
  451. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/__init__.py +0 -0
  452. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/converters/__init__.py +0 -0
  453. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/converters/frames.py +0 -0
  454. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/converters/generic_map.py +0 -0
  455. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/entry_points.py +0 -0
  456. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/__init__.py +0 -0
  457. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/manifests/sunpy-1.0.0.yaml +0 -0
  458. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/generic_map-1.0.0.yaml +0 -0
  459. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/generic_map-1.1.0.yaml +0 -0
  460. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/geocentricearthequatorial-1.0.0.yaml +0 -0
  461. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/geocentricsolarecliptic-1.0.0.yaml +0 -0
  462. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliocentric-1.0.0.yaml +0 -0
  463. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliocentricearthecliptic-1.0.0.yaml +0 -0
  464. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliocentricinertial-1.0.0.yaml +0 -0
  465. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliographic_carrington-1.0.0.yaml +0 -0
  466. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliographic_carrington-1.1.0.yaml +0 -0
  467. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliographic_carrington-1.2.0.yaml +0 -0
  468. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliographic_stonyhurst-1.0.0.yaml +0 -0
  469. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/heliographic_stonyhurst-1.1.0.yaml +0 -0
  470. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/resources/schemas/helioprojective-1.0.0.yaml +0 -0
  471. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/tests/__init__.py +0 -0
  472. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/tests/helpers.py +0 -0
  473. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/asdf/tests/hgc_100.asdf +0 -0
  474. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/special/srs.py +0 -0
  475. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/_pyana.c +0 -0
  476. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/anacompress.c +0 -0
  477. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/anacompress.h +0 -0
  478. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/anadecompress.c +0 -0
  479. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/anadecompress.h +0 -0
  480. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/anarw.c +0 -0
  481. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/anarw.h +0 -0
  482. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/src/ana/types.h +0 -0
  483. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/__init__.py +0 -0
  484. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/generate_genx.pro +0 -0
  485. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/test_ana.py +0 -0
  486. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/test_cdf.py +0 -0
  487. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/test_filetools.py +0 -0
  488. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/test_fits.py +0 -0
  489. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/io/tests/test_jp2.py +0 -0
  490. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/__init__.py +0 -0
  491. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/_units.py +0 -0
  492. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/compositemap.py +0 -0
  493. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/map_factory.py +0 -0
  494. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/mapsequence.py +0 -0
  495. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/__init__.py +0 -0
  496. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/hinode.py +0 -0
  497. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/iris.py +0 -0
  498. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/mlso.py +0 -0
  499. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/proba2.py +0 -0
  500. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/psp.py +0 -0
  501. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/rhessi.py +0 -0
  502. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/sdo.py +0 -0
  503. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/soho.py +0 -0
  504. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/solo.py +0 -0
  505. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/source_type.py +0 -0
  506. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/stereo.py +0 -0
  507. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/suvi.py +0 -0
  508. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/__init__.py +0 -0
  509. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_aia_source.py +0 -0
  510. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_cor_source.py +0 -0
  511. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_eit_source.py +0 -0
  512. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_eui_source.py +0 -0
  513. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_euvi_source.py +0 -0
  514. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_hi_source.py +0 -0
  515. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_hmi_source.py +0 -0
  516. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_hmi_synoptic_source.py +0 -0
  517. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_iris_source.py +0 -0
  518. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_kcor_source.py +0 -0
  519. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_lasco_source.py +0 -0
  520. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_mdi_source.py +0 -0
  521. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_rhessi_source.py +0 -0
  522. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_sot_source.py +0 -0
  523. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_source_type.py +0 -0
  524. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_suvi_source.py +0 -0
  525. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_swap_source.py +0 -0
  526. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_sxt_source.py +0 -0
  527. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_trace_source.py +0 -0
  528. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_wispr_source.py +0 -0
  529. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/tests/test_xrt_source.py +0 -0
  530. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/trace.py +0 -0
  531. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/sources/yohkoh.py +0 -0
  532. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/__init__.py +0 -0
  533. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/conftest.py +0 -0
  534. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/strategies.py +0 -0
  535. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_compositemap.py +0 -0
  536. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_header.py +0 -0
  537. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_header_helper.py +0 -0
  538. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_mapsequence.py +0 -0
  539. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_plotting.py +0 -0
  540. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/map/tests/test_reproject_to.py +0 -0
  541. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/__init__.py +0 -0
  542. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/_attrs.py +0 -0
  543. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/attr.py +0 -0
  544. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/attrs.py +0 -0
  545. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/base_client.py +0 -0
  546. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/__init__.py +0 -0
  547. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/attrs.py +0 -0
  548. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/cdaweb.py +0 -0
  549. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/data/attrs.json +0 -0
  550. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/helpers.py +0 -0
  551. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/test/__init__.py +0 -0
  552. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/test/test_cdaweb.py +0 -0
  553. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/cdaweb/walker.py +0 -0
  554. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/__init__.py +0 -0
  555. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/attrs/__init__.py +0 -0
  556. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/attrs/goes.py +0 -0
  557. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/client.py +0 -0
  558. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/__init__.py +0 -0
  559. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/eve.py +0 -0
  560. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/fermi_gbm.py +0 -0
  561. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/goes.py +0 -0
  562. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/gong.py +0 -0
  563. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/lyra.py +0 -0
  564. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/noaa.py +0 -0
  565. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/norh.py +0 -0
  566. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/rhessi.py +0 -0
  567. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/__init__.py +0 -0
  568. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_eve.py +0 -0
  569. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_goes_suvi.py +0 -0
  570. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_goes_ud.py +0 -0
  571. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_gong_synoptic.py +0 -0
  572. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_lyra_ud.py +0 -0
  573. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_norh.py +0 -0
  574. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/sources/tests/test_rhessi.py +0 -0
  575. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/tests/__init__.py +0 -0
  576. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/dataretriever/tests/test_client.py +0 -0
  577. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/fido_factory.py +0 -0
  578. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek/__init__.py +0 -0
  579. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek/attrs.py +0 -0
  580. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek/hek.py +0 -0
  581. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek/tests/__init__.py +0 -0
  582. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek2vso/__init__.py +0 -0
  583. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek2vso/hek2vso.py +0 -0
  584. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek2vso/tests/__init__.py +0 -0
  585. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/hek2vso/tests/test_hek2vso.py +0 -0
  586. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/__init__.py +0 -0
  587. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/attrs.py +0 -0
  588. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/parser.py +0 -0
  589. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/tests/__init__.py +0 -0
  590. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helio/tests/test_chaincode.py +0 -0
  591. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/helioviewer.py +0 -0
  592. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/__init__.py +0 -0
  593. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/attrs.py +0 -0
  594. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/data/__init__.py +0 -0
  595. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/data/attrs.json +0 -0
  596. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/tests/__init__.py +0 -0
  597. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/jsoc/tests/test_attr.py +0 -0
  598. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/scraper.py +0 -0
  599. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/__init__.py +0 -0
  600. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/test_attr.py +0 -0
  601. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/test_attr_walker.py +0 -0
  602. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/test_attrs.py +0 -0
  603. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/test_baseclient.py +0 -0
  604. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/test_fido.py +0 -0
  605. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/test_helioviewer.py +0 -0
  606. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/tests/test_scraper.py +0 -0
  607. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/__init__.py +0 -0
  608. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/attrs.py +0 -0
  609. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/data/__init__.py +0 -0
  610. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/data/attrs.json +0 -0
  611. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/exceptions.py +0 -0
  612. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/legacy_response.py +0 -0
  613. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/table_response.py +0 -0
  614. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/tests/__init__.py +0 -0
  615. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/tests/conftest.py +0 -0
  616. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/tests/test_attrs.py +0 -0
  617. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/tests/test_vso.py +0 -0
  618. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/vso.py +0 -0
  619. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/net/vso/zeep_plugins.py +0 -0
  620. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/physics/__init__.py +0 -0
  621. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/physics/differential_rotation.py +0 -0
  622. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/physics/tests/__init__.py +0 -0
  623. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/physics/tests/reference/test_differential_rotation.txt +0 -0
  624. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/physics/tests/test_differential_rotation.py +0 -0
  625. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/sun/__init__.py +0 -0
  626. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/sun/_constants.py +0 -0
  627. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/sun/constants.py +0 -0
  628. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/sun/models.py +0 -0
  629. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/sun/tests/__init__.py +0 -0
  630. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/sun/tests/test_constants.py +0 -0
  631. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/__init__.py +0 -0
  632. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/figure_hashes_mpl_353_ft_261_astropy_511_animators_100.json +0 -0
  633. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/mocks.py +0 -0
  634. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/tests/__init__.py +0 -0
  635. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/tests/test_mocks.py +0 -0
  636. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/tests/test_self_test.py +0 -0
  637. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/tests/tests/test_sunpy_data_filenames.py +0 -0
  638. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/__init__.py +0 -0
  639. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/tests/__init__.py +0 -0
  640. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/tests/test_utime.py +0 -0
  641. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/time.py +0 -0
  642. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/timeformats.py +0 -0
  643. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/time/timerange.py +0 -0
  644. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/__init__.py +0 -0
  645. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/__init__.py +0 -0
  646. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/fermi_gbm.py +0 -0
  647. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/lyra.py +0 -0
  648. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/noaa.py +0 -0
  649. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/norh.py +0 -0
  650. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/rhessi.py +0 -0
  651. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/__init__.py +0 -0
  652. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/conftest.py +0 -0
  653. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/test_fermi_gbm.py +0 -0
  654. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/test_goes.py +0 -0
  655. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/test_lyra.py +0 -0
  656. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/test_noaa.py +0 -0
  657. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/test_norh.py +0 -0
  658. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/sources/tests/test_rhessi.py +0 -0
  659. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/tests/__init__.py +0 -0
  660. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/tests/test_timeseries_factory.py +0 -0
  661. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/tests/test_timeseriesbase.py +0 -0
  662. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/timeseries/timeseries_factory.py +0 -0
  663. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/__init__.py +0 -0
  664. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/config.py +0 -0
  665. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/datatype_factory_base.py +0 -0
  666. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/functools.py +0 -0
  667. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/io.py +0 -0
  668. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/logger.py +0 -0
  669. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/net.py +0 -0
  670. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/parfive_helpers.py +0 -0
  671. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/sphinx/__init__.py +0 -0
  672. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/sphinx/doctest.py +0 -0
  673. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/sphinx/generate.py +0 -0
  674. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/sysinfo.py +0 -0
  675. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/__init__.py +0 -0
  676. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_config.py +0 -0
  677. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_decorators.py +0 -0
  678. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_functools.py +0 -0
  679. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_logger.py +0 -0
  680. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_metadata.py +0 -0
  681. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_net.py +0 -0
  682. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_util.py +0 -0
  683. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/tests/test_xml.py +0 -0
  684. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/types.py +0 -0
  685. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/util.py +0 -0
  686. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/util/xml.py +0 -0
  687. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/version.py +0 -0
  688. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/__init__.py +0 -0
  689. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/animator/__init__.py +0 -0
  690. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/animator/mapsequenceanimator.py +0 -0
  691. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/animator/tests/__init__.py +0 -0
  692. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/animator/tests/test_mapsequenceanimator.py +0 -0
  693. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/__init__.py +0 -0
  694. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/cm.py +0 -0
  695. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/color_tables.py +0 -0
  696. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/README.rst +0 -0
  697. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/eit_dark_blue.csv +0 -0
  698. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/eit_dark_green.csv +0 -0
  699. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/eit_dark_red.csv +0 -0
  700. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/eit_yellow.csv +0 -0
  701. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/euvi_171.csv +0 -0
  702. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/euvi_195.csv +0 -0
  703. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/euvi_284.csv +0 -0
  704. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/euvi_304.csv +0 -0
  705. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/grayscale.csv +0 -0
  706. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/hi1.csv +0 -0
  707. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/hi2.csv +0 -0
  708. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/hmi_mag.csv +0 -0
  709. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/idl_3.csv +0 -0
  710. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/lasco_c2.csv +0 -0
  711. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/lasco_c3.csv +0 -0
  712. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/rhessi.csv +0 -0
  713. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/std_gamma_2.csv +0 -0
  714. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/stereo_cor1.csv +0 -0
  715. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/stereo_cor2.csv +0 -0
  716. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/trace_1216.csv +0 -0
  717. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/trace_1550.csv +0 -0
  718. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/trace_1600.csv +0 -0
  719. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/trace_1700.csv +0 -0
  720. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/trace_171.csv +0 -0
  721. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/trace_195.csv +0 -0
  722. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/data/trace_284.csv +0 -0
  723. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/tests/__init__.py +0 -0
  724. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/colormaps/tests/test_cm.py +0 -0
  725. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/drawing.py +0 -0
  726. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/limb.py +0 -0
  727. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/tests/__init__.py +0 -0
  728. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/tests/test_drawing.py +0 -0
  729. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/visualization.py +0 -0
  730. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy/visualization/wcsaxes_compat.py +0 -0
  731. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy.egg-info/dependency_links.txt +0 -0
  732. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy.egg-info/entry_points.txt +0 -0
  733. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy.egg-info/not-zip-safe +0 -0
  734. {sunpy-5.0.2 → sunpy-5.0.4}/sunpy.egg-info/top_level.txt +0 -0
@@ -1,3 +1,62 @@
1
+ 5.0.4 (2024-04-04)
2
+ ==================
3
+
4
+ Bug Fixes
5
+ ---------
6
+
7
+ - Fix a bug which caused ``Fido.search`` to crash due to SSL certificate verification error for the `~sunpy.net.helio.HECClient` now returns no results and logs a warning in this case. (`#7446 <https://github.com/sunpy/sunpy/pull/7446>`__)
8
+ - The creation of the series string for a JSOC query was not adding the correct escape characters for comparison values for keywords.
9
+ This was causing the JSOC to error. (`#7467 <https://github.com/sunpy/sunpy/pull/7467>`__)
10
+ - Fixed a very minor inaccuracy in three `sunpy.map` utility functions (:func:`~sunpy.map.contains_full_disk`, :func:`~sunpy.map.coordinate_is_on_solar_disk`, and :func:`~sunpy.map.is_all_off_disk`) resulting from the accidental use of the small-angle approximation. (`#7512 <https://github.com/sunpy/sunpy/pull/7512>`__)
11
+ - The :meth:`~sunpy.map.GenericMap.rotate` function now correctly updates the NAXISi. (`#7522 <https://github.com/sunpy/sunpy/pull/7522>`__)
12
+ - Fixed an inaccuracy in the implementation of `~sunpy.coordinates.HeliocentricEarthEcliptic` and `~sunpy.coordinates.GeocentricSolarEcliptic` such that the Earth was not exactly in the XY plane, but rather had an error of up ~10 meters. (`#7530 <https://github.com/sunpy/sunpy/pull/7530>`__)
13
+ - Fixed a bug with any coordinate transformation starting in `~sunpy.coordinates.GeocentricEarthEquatorial` (GEI) returning output with AU as the length unit, rather than preserving the length unit of the initial coordinate. (`#7545 <https://github.com/sunpy/sunpy/pull/7545>`__)
14
+
15
+
16
+ Documentation
17
+ -------------
18
+
19
+ - Created a how to guide on fixing metadata that is either missing or incorrect before passing the header into the `~sunpy.map.Map` class. (`#7262 <https://github.com/sunpy/sunpy/pull/7262>`__)
20
+
21
+
22
+ Internal Changes
23
+ ----------------
24
+
25
+ - ``pyerfa`` is now a new direct dependency.
26
+ It has been an indirect dependency from sunpy 3.1, over two years ago. (`#7397 <https://github.com/sunpy/sunpy/pull/7397>`__)
27
+
28
+
29
+ 5.0.3 (2024-01-12)
30
+ ==================
31
+
32
+ New Features
33
+ ------------
34
+
35
+ - Add an example of plotting a rectangle on a map with a rotation angle relative to the axes (:ref:`sphx_glr_generated_gallery_plotting_plot_rotated_rectangle.py`). (`#7348 <https://github.com/sunpy/sunpy/pull/7348>`__)
36
+ - Added testing and explicit support for Python 3.12. (`#7351 <https://github.com/sunpy/sunpy/pull/7351>`__)
37
+
38
+
39
+ Bug Fixes
40
+ ---------
41
+
42
+ - When calling :meth:`sunpy.map.GenericMap.rotate` on an integer data array, with ``missing`` set to NaN (the default value), the method will now itself raise an informative error message instead deferring to NumPy to raise the error. (`#7344 <https://github.com/sunpy/sunpy/pull/7344>`__)
43
+
44
+
45
+ Documentation
46
+ -------------
47
+
48
+ - Fixed the usage of :meth:`~sunpy.map.GenericMap.superpixel` in :ref:`sphx_glr_generated_gallery_map_map_resampling_and_superpixels.py`. (`#7316 <https://github.com/sunpy/sunpy/pull/7316>`__)
49
+ - Added Clarification on setting JSOC Email. (`#7329 <https://github.com/sunpy/sunpy/pull/7329>`__)
50
+ - Added explanation text to :ref:`sphx_glr_generated_gallery_plotting_plotting_blank_map.py` about the offset between "(0, 0)" in helioprojective coordinates and the heliographic equator. (`#7352 <https://github.com/sunpy/sunpy/pull/7352>`__)
51
+
52
+
53
+ Internal Changes
54
+ ----------------
55
+
56
+ - The ``delim_whitespace`` keyword in `pandas.read_csv` is deprecated and was updated with ``sep='\s+'``.
57
+ This should have no affect on the output of the code. (`#7350 <https://github.com/sunpy/sunpy/pull/7350>`__)
58
+
59
+
1
60
  5.0.2 (2023-11-21)
2
61
  ==================
3
62
 
@@ -370,7 +429,7 @@ Documentation
370
429
  - Improved the plotting guide. (`#6430 <https://github.com/sunpy/sunpy/pull/6430>`__)
371
430
  - Slight improvements to the downloading data with Fido part of the guide. (`#6444 <https://github.com/sunpy/sunpy/pull/6444>`__)
372
431
  - Split the units and coordinate guides on to separate pages, and made minor improvements to them. (`#6462 <https://github.com/sunpy/sunpy/pull/6462>`__)
373
- - Added a how-to guide (:ref:`conda_for_dependencies`) for using ``conda`` to set up an environment with the complete set of dependencies to use all optional features, build the documentation, and/or run the full test suite.
432
+ - Added a how-to guide ``conda_for_dependencies`` for using ``conda`` to set up an environment with the complete set of dependencies to use all optional features, build the documentation, and/or run the full test suite.
374
433
  The guide also describes how best to have an editable installation of ``sunpy`` in this environment. (`#6524 <https://github.com/sunpy/sunpy/pull/6524>`__)
375
434
 
376
435
 
@@ -15,7 +15,6 @@ exclude tox.ini
15
15
 
16
16
  prune .circleci
17
17
  prune .github
18
- prune .jupyter
19
18
  prune benchmarks
20
19
  prune binder
21
20
  prune changelog
sunpy-5.0.4/PKG-INFO ADDED
@@ -0,0 +1,382 @@
1
+ Metadata-Version: 2.1
2
+ Name: sunpy
3
+ Version: 5.0.4
4
+ Summary: SunPy core package: Python for Solar Physics
5
+ Home-page: https://sunpy.org
6
+ Download-URL: https://pypi.org/project/sunpy/
7
+ Author: The SunPy Community
8
+ Author-email: sunpy@googlegroups.com
9
+ License: BSD 2-Clause
10
+ Project-URL: Source Code, https://github.com/sunpy/sunpy/
11
+ Project-URL: Documentation, https://docs.sunpy.org/
12
+ Project-URL: Changelog, https://docs.sunpy.org/en/stable/whatsnew/changelog.html
13
+ Project-URL: Issue Tracker, https://github.com/sunpy/sunpy/issues
14
+ Keywords: solar physics,solar,science,sun,wcs,coordinates
15
+ Platform: any
16
+ Classifier: Development Status :: 5 - Production/Stable
17
+ Classifier: Intended Audience :: Science/Research
18
+ Classifier: License :: OSI Approved :: BSD License
19
+ Classifier: Natural Language :: English
20
+ Classifier: Operating System :: OS Independent
21
+ Classifier: Programming Language :: Python
22
+ Classifier: Programming Language :: Python :: 3
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Topic :: Scientific/Engineering :: Physics
28
+ Provides: sunpy
29
+ Requires-Python: >=3.9
30
+ Description-Content-Type: text/x-rst
31
+ License-File: LICENSE.rst
32
+ Requires-Dist: astropy!=5.1.0,>=5.0.6
33
+ Requires-Dist: numpy>=1.21.0
34
+ Requires-Dist: packaging>=19.0
35
+ Requires-Dist: parfive[ftp]>=2.0.0
36
+ Requires-Dist: pyerfa
37
+ Provides-Extra: asdf
38
+ Requires-Dist: asdf-astropy>=0.1.1; extra == "asdf"
39
+ Requires-Dist: asdf>=2.8.0; extra == "asdf"
40
+ Provides-Extra: dask
41
+ Requires-Dist: dask[array]>=2021.4.0; extra == "dask"
42
+ Provides-Extra: database
43
+ Requires-Dist: sqlalchemy>=1.3.4; extra == "database"
44
+ Provides-Extra: image
45
+ Requires-Dist: scikit-image>=0.18.0; extra == "image"
46
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "image"
47
+ Provides-Extra: jpeg2000
48
+ Requires-Dist: glymur!=0.9.0,!=0.9.5,>=0.8.18; extra == "jpeg2000"
49
+ Requires-Dist: lxml!=5.0.0,>=4.8.0; extra == "jpeg2000"
50
+ Provides-Extra: map
51
+ Requires-Dist: matplotlib>=3.5.0; extra == "map"
52
+ Requires-Dist: mpl-animators>=1.0.0; extra == "map"
53
+ Requires-Dist: reproject; extra == "map"
54
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "map"
55
+ Provides-Extra: net
56
+ Requires-Dist: beautifulsoup4>=4.8.0; extra == "net"
57
+ Requires-Dist: drms<0.7.0,>=0.6.1; extra == "net"
58
+ Requires-Dist: python-dateutil>=2.8.0; extra == "net"
59
+ Requires-Dist: tqdm>=4.32.1; extra == "net"
60
+ Requires-Dist: zeep>=3.4.0; extra == "net"
61
+ Provides-Extra: timeseries
62
+ Requires-Dist: cdflib!=0.4.0,!=1.0.0,>=0.3.20; extra == "timeseries"
63
+ Requires-Dist: h5netcdf>=0.11; extra == "timeseries"
64
+ Requires-Dist: h5py>=3.1.0; extra == "timeseries"
65
+ Requires-Dist: matplotlib>=3.5.0; extra == "timeseries"
66
+ Requires-Dist: pandas>=1.2.0; extra == "timeseries"
67
+ Provides-Extra: visualization
68
+ Requires-Dist: matplotlib>=3.5.0; extra == "visualization"
69
+ Requires-Dist: mpl-animators>=1.0.0; extra == "visualization"
70
+ Provides-Extra: all
71
+ Requires-Dist: asdf-astropy>=0.1.1; extra == "all"
72
+ Requires-Dist: asdf>=2.8.0; extra == "all"
73
+ Requires-Dist: dask[array]>=2021.4.0; extra == "all"
74
+ Requires-Dist: sqlalchemy>=1.3.4; extra == "all"
75
+ Requires-Dist: scikit-image>=0.18.0; extra == "all"
76
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "all"
77
+ Requires-Dist: glymur!=0.9.0,!=0.9.5,>=0.8.18; extra == "all"
78
+ Requires-Dist: lxml!=5.0.0,>=4.8.0; extra == "all"
79
+ Requires-Dist: matplotlib>=3.5.0; extra == "all"
80
+ Requires-Dist: mpl-animators>=1.0.0; extra == "all"
81
+ Requires-Dist: reproject; extra == "all"
82
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "all"
83
+ Requires-Dist: beautifulsoup4>=4.8.0; extra == "all"
84
+ Requires-Dist: drms<0.7.0,>=0.6.1; extra == "all"
85
+ Requires-Dist: python-dateutil>=2.8.0; extra == "all"
86
+ Requires-Dist: tqdm>=4.32.1; extra == "all"
87
+ Requires-Dist: zeep>=3.4.0; extra == "all"
88
+ Requires-Dist: cdflib!=0.4.0,!=1.0.0,>=0.3.20; extra == "all"
89
+ Requires-Dist: h5netcdf>=0.11; extra == "all"
90
+ Requires-Dist: h5py>=3.1.0; extra == "all"
91
+ Requires-Dist: matplotlib>=3.5.0; extra == "all"
92
+ Requires-Dist: pandas>=1.2.0; extra == "all"
93
+ Requires-Dist: matplotlib>=3.5.0; extra == "all"
94
+ Requires-Dist: mpl-animators>=1.0.0; extra == "all"
95
+ Provides-Extra: tests
96
+ Requires-Dist: asdf-astropy>=0.1.1; extra == "tests"
97
+ Requires-Dist: asdf>=2.8.0; extra == "tests"
98
+ Requires-Dist: dask[array]>=2021.4.0; extra == "tests"
99
+ Requires-Dist: sqlalchemy>=1.3.4; extra == "tests"
100
+ Requires-Dist: scikit-image>=0.18.0; extra == "tests"
101
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "tests"
102
+ Requires-Dist: glymur!=0.9.0,!=0.9.5,>=0.8.18; extra == "tests"
103
+ Requires-Dist: lxml!=5.0.0,>=4.8.0; extra == "tests"
104
+ Requires-Dist: matplotlib>=3.5.0; extra == "tests"
105
+ Requires-Dist: mpl-animators>=1.0.0; extra == "tests"
106
+ Requires-Dist: reproject; extra == "tests"
107
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "tests"
108
+ Requires-Dist: beautifulsoup4>=4.8.0; extra == "tests"
109
+ Requires-Dist: drms<0.7.0,>=0.6.1; extra == "tests"
110
+ Requires-Dist: python-dateutil>=2.8.0; extra == "tests"
111
+ Requires-Dist: tqdm>=4.32.1; extra == "tests"
112
+ Requires-Dist: zeep>=3.4.0; extra == "tests"
113
+ Requires-Dist: cdflib!=0.4.0,!=1.0.0,>=0.3.20; extra == "tests"
114
+ Requires-Dist: h5netcdf>=0.11; extra == "tests"
115
+ Requires-Dist: h5py>=3.1.0; extra == "tests"
116
+ Requires-Dist: matplotlib>=3.5.0; extra == "tests"
117
+ Requires-Dist: pandas>=1.2.0; extra == "tests"
118
+ Requires-Dist: matplotlib>=3.5.0; extra == "tests"
119
+ Requires-Dist: mpl-animators>=1.0.0; extra == "tests"
120
+ Requires-Dist: hvpy>=1.0.1; extra == "tests"
121
+ Requires-Dist: hypothesis>=6.0.0; extra == "tests"
122
+ Requires-Dist: jplephem; extra == "tests"
123
+ Requires-Dist: opencv-python; extra == "tests"
124
+ Requires-Dist: pytest-astropy>=0.8; extra == "tests"
125
+ Requires-Dist: pytest-doctestplus>=0.5; extra == "tests"
126
+ Requires-Dist: pytest-mock; extra == "tests"
127
+ Requires-Dist: pytest-mpl>=0.12; extra == "tests"
128
+ Requires-Dist: pytest-xdist>=2.0; extra == "tests"
129
+ Requires-Dist: pytest>=6.0; extra == "tests"
130
+ Provides-Extra: docs
131
+ Requires-Dist: asdf-astropy>=0.1.1; extra == "docs"
132
+ Requires-Dist: asdf>=2.8.0; extra == "docs"
133
+ Requires-Dist: dask[array]>=2021.4.0; extra == "docs"
134
+ Requires-Dist: sqlalchemy>=1.3.4; extra == "docs"
135
+ Requires-Dist: scikit-image>=0.18.0; extra == "docs"
136
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "docs"
137
+ Requires-Dist: glymur!=0.9.0,!=0.9.5,>=0.8.18; extra == "docs"
138
+ Requires-Dist: lxml!=5.0.0,>=4.8.0; extra == "docs"
139
+ Requires-Dist: matplotlib>=3.5.0; extra == "docs"
140
+ Requires-Dist: mpl-animators>=1.0.0; extra == "docs"
141
+ Requires-Dist: reproject; extra == "docs"
142
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "docs"
143
+ Requires-Dist: beautifulsoup4>=4.8.0; extra == "docs"
144
+ Requires-Dist: drms<0.7.0,>=0.6.1; extra == "docs"
145
+ Requires-Dist: python-dateutil>=2.8.0; extra == "docs"
146
+ Requires-Dist: tqdm>=4.32.1; extra == "docs"
147
+ Requires-Dist: zeep>=3.4.0; extra == "docs"
148
+ Requires-Dist: cdflib!=0.4.0,!=1.0.0,>=0.3.20; extra == "docs"
149
+ Requires-Dist: h5netcdf>=0.11; extra == "docs"
150
+ Requires-Dist: h5py>=3.1.0; extra == "docs"
151
+ Requires-Dist: matplotlib>=3.5.0; extra == "docs"
152
+ Requires-Dist: pandas>=1.2.0; extra == "docs"
153
+ Requires-Dist: matplotlib>=3.5.0; extra == "docs"
154
+ Requires-Dist: mpl-animators>=1.0.0; extra == "docs"
155
+ Requires-Dist: astroquery; extra == "docs"
156
+ Requires-Dist: hvpy>=1.0.1; extra == "docs"
157
+ Requires-Dist: jplephem; extra == "docs"
158
+ Requires-Dist: mplcairo; extra == "docs"
159
+ Requires-Dist: opencv-python; extra == "docs"
160
+ Requires-Dist: packaging; extra == "docs"
161
+ Requires-Dist: reproject; extra == "docs"
162
+ Requires-Dist: ruamel.yaml; extra == "docs"
163
+ Requires-Dist: sphinx; extra == "docs"
164
+ Requires-Dist: sphinx-automodapi; extra == "docs"
165
+ Requires-Dist: importlib-resources<6; extra == "docs"
166
+ Requires-Dist: sphinx-changelog; extra == "docs"
167
+ Requires-Dist: sphinx-copybutton; extra == "docs"
168
+ Requires-Dist: sphinx-design; extra == "docs"
169
+ Requires-Dist: sphinx-gallery>=0.13.0; extra == "docs"
170
+ Requires-Dist: sphinxext-opengraph; extra == "docs"
171
+ Requires-Dist: sunpy-sphinx-theme>=2.0.0rc1; extra == "docs"
172
+ Requires-Dist: sphinx-hoverxref; extra == "docs"
173
+ Provides-Extra: dev
174
+ Requires-Dist: asdf-astropy>=0.1.1; extra == "dev"
175
+ Requires-Dist: asdf>=2.8.0; extra == "dev"
176
+ Requires-Dist: dask[array]>=2021.4.0; extra == "dev"
177
+ Requires-Dist: sqlalchemy>=1.3.4; extra == "dev"
178
+ Requires-Dist: scikit-image>=0.18.0; extra == "dev"
179
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "dev"
180
+ Requires-Dist: glymur!=0.9.0,!=0.9.5,>=0.8.18; extra == "dev"
181
+ Requires-Dist: lxml!=5.0.0,>=4.8.0; extra == "dev"
182
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
183
+ Requires-Dist: mpl-animators>=1.0.0; extra == "dev"
184
+ Requires-Dist: reproject; extra == "dev"
185
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "dev"
186
+ Requires-Dist: beautifulsoup4>=4.8.0; extra == "dev"
187
+ Requires-Dist: drms<0.7.0,>=0.6.1; extra == "dev"
188
+ Requires-Dist: python-dateutil>=2.8.0; extra == "dev"
189
+ Requires-Dist: tqdm>=4.32.1; extra == "dev"
190
+ Requires-Dist: zeep>=3.4.0; extra == "dev"
191
+ Requires-Dist: cdflib!=0.4.0,!=1.0.0,>=0.3.20; extra == "dev"
192
+ Requires-Dist: h5netcdf>=0.11; extra == "dev"
193
+ Requires-Dist: h5py>=3.1.0; extra == "dev"
194
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
195
+ Requires-Dist: pandas>=1.2.0; extra == "dev"
196
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
197
+ Requires-Dist: mpl-animators>=1.0.0; extra == "dev"
198
+ Requires-Dist: asdf-astropy>=0.1.1; extra == "dev"
199
+ Requires-Dist: asdf>=2.8.0; extra == "dev"
200
+ Requires-Dist: dask[array]>=2021.4.0; extra == "dev"
201
+ Requires-Dist: sqlalchemy>=1.3.4; extra == "dev"
202
+ Requires-Dist: scikit-image>=0.18.0; extra == "dev"
203
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "dev"
204
+ Requires-Dist: glymur!=0.9.0,!=0.9.5,>=0.8.18; extra == "dev"
205
+ Requires-Dist: lxml!=5.0.0,>=4.8.0; extra == "dev"
206
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
207
+ Requires-Dist: mpl-animators>=1.0.0; extra == "dev"
208
+ Requires-Dist: reproject; extra == "dev"
209
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "dev"
210
+ Requires-Dist: beautifulsoup4>=4.8.0; extra == "dev"
211
+ Requires-Dist: drms<0.7.0,>=0.6.1; extra == "dev"
212
+ Requires-Dist: python-dateutil>=2.8.0; extra == "dev"
213
+ Requires-Dist: tqdm>=4.32.1; extra == "dev"
214
+ Requires-Dist: zeep>=3.4.0; extra == "dev"
215
+ Requires-Dist: cdflib!=0.4.0,!=1.0.0,>=0.3.20; extra == "dev"
216
+ Requires-Dist: h5netcdf>=0.11; extra == "dev"
217
+ Requires-Dist: h5py>=3.1.0; extra == "dev"
218
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
219
+ Requires-Dist: pandas>=1.2.0; extra == "dev"
220
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
221
+ Requires-Dist: mpl-animators>=1.0.0; extra == "dev"
222
+ Requires-Dist: hvpy>=1.0.1; extra == "dev"
223
+ Requires-Dist: hypothesis>=6.0.0; extra == "dev"
224
+ Requires-Dist: jplephem; extra == "dev"
225
+ Requires-Dist: opencv-python; extra == "dev"
226
+ Requires-Dist: pytest-astropy>=0.8; extra == "dev"
227
+ Requires-Dist: pytest-doctestplus>=0.5; extra == "dev"
228
+ Requires-Dist: pytest-mock; extra == "dev"
229
+ Requires-Dist: pytest-mpl>=0.12; extra == "dev"
230
+ Requires-Dist: pytest-xdist>=2.0; extra == "dev"
231
+ Requires-Dist: pytest>=6.0; extra == "dev"
232
+ Requires-Dist: asdf-astropy>=0.1.1; extra == "dev"
233
+ Requires-Dist: asdf>=2.8.0; extra == "dev"
234
+ Requires-Dist: dask[array]>=2021.4.0; extra == "dev"
235
+ Requires-Dist: sqlalchemy>=1.3.4; extra == "dev"
236
+ Requires-Dist: scikit-image>=0.18.0; extra == "dev"
237
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "dev"
238
+ Requires-Dist: glymur!=0.9.0,!=0.9.5,>=0.8.18; extra == "dev"
239
+ Requires-Dist: lxml!=5.0.0,>=4.8.0; extra == "dev"
240
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
241
+ Requires-Dist: mpl-animators>=1.0.0; extra == "dev"
242
+ Requires-Dist: reproject; extra == "dev"
243
+ Requires-Dist: scipy!=1.10.0,>=1.7.0; extra == "dev"
244
+ Requires-Dist: beautifulsoup4>=4.8.0; extra == "dev"
245
+ Requires-Dist: drms<0.7.0,>=0.6.1; extra == "dev"
246
+ Requires-Dist: python-dateutil>=2.8.0; extra == "dev"
247
+ Requires-Dist: tqdm>=4.32.1; extra == "dev"
248
+ Requires-Dist: zeep>=3.4.0; extra == "dev"
249
+ Requires-Dist: cdflib!=0.4.0,!=1.0.0,>=0.3.20; extra == "dev"
250
+ Requires-Dist: h5netcdf>=0.11; extra == "dev"
251
+ Requires-Dist: h5py>=3.1.0; extra == "dev"
252
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
253
+ Requires-Dist: pandas>=1.2.0; extra == "dev"
254
+ Requires-Dist: matplotlib>=3.5.0; extra == "dev"
255
+ Requires-Dist: mpl-animators>=1.0.0; extra == "dev"
256
+ Requires-Dist: astroquery; extra == "dev"
257
+ Requires-Dist: hvpy>=1.0.1; extra == "dev"
258
+ Requires-Dist: jplephem; extra == "dev"
259
+ Requires-Dist: mplcairo; extra == "dev"
260
+ Requires-Dist: opencv-python; extra == "dev"
261
+ Requires-Dist: packaging; extra == "dev"
262
+ Requires-Dist: reproject; extra == "dev"
263
+ Requires-Dist: ruamel.yaml; extra == "dev"
264
+ Requires-Dist: sphinx; extra == "dev"
265
+ Requires-Dist: sphinx-automodapi; extra == "dev"
266
+ Requires-Dist: importlib-resources<6; extra == "dev"
267
+ Requires-Dist: sphinx-changelog; extra == "dev"
268
+ Requires-Dist: sphinx-copybutton; extra == "dev"
269
+ Requires-Dist: sphinx-design; extra == "dev"
270
+ Requires-Dist: sphinx-gallery>=0.13.0; extra == "dev"
271
+ Requires-Dist: sphinxext-opengraph; extra == "dev"
272
+ Requires-Dist: sunpy-sphinx-theme>=2.0.0rc1; extra == "dev"
273
+ Requires-Dist: sphinx-hoverxref; extra == "dev"
274
+
275
+ *********
276
+ ``sunpy``
277
+ *********
278
+ |SunPy Logo|
279
+
280
+ +-----------------------------------+-----------------------------------+-----------------------------------+
281
+ | Release | Development | Community |
282
+ +===================================+===================================+===================================+
283
+ | |Latest PyPi Version| | |Python Versions| | |Matrix Chat Room| |
284
+ +-----------------------------------+-----------------------------------+-----------------------------------+
285
+ | |Latest Conda Version| | |Project Status: Active| | |OpenAstronomy Discourse| |
286
+ +-----------------------------------+-----------------------------------+-----------------------------------+
287
+ | |Zenodo - Latest DOI| | |Continuous Integration Status| | |Google Groups Mailing List| |
288
+ +-----------------------------------+-----------------------------------+-----------------------------------+
289
+ | |sunpy stable documentation| | |CodeCov Code Coverage| | |Powered by NumFOCUS| |
290
+ +-----------------------------------+-----------------------------------+-----------------------------------+
291
+ | |sunpy citation| | | |pyOpenSci| |
292
+ +-----------------------------------+-----------------------------------+-----------------------------------+
293
+
294
+ .. |SunPy Logo| image:: https://raw.githubusercontent.com/sunpy/sunpy-logo/master/generated/sunpy_logo_landscape.png
295
+ :width: 200px
296
+ .. |Latest PyPi Version| image:: https://img.shields.io/pypi/v/sunpy.svg
297
+ :target: https://pypi.python.org/pypi/sunpy/
298
+ .. |Python Versions| image:: https://img.shields.io/pypi/pyversions/sunpy
299
+ :target: https://pypi.python.org/pypi/sunpy/
300
+ .. |Matrix Chat Room| image:: https://img.shields.io/matrix/sunpy:openastronomy.org.svg?colorB=%23FE7900&label=Chat&logo=matrix&server_fqdn=matrix.org
301
+ :target: https://app.element.io/#/room/#sunpy:openastronomy.org
302
+ .. |Latest Conda Version| image:: https://anaconda.org/conda-forge/sunpy/badges/version.svg
303
+ :target: https://anaconda.org/conda-forge/sunpy
304
+ .. |Project Status: Active| image:: https://www.repostatus.org/badges/latest/active.svg
305
+ :target: https://www.repostatus.org/#active
306
+ .. |OpenAstronomy Discourse| image:: https://cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/try2/original/1X/5e1e3b3cada2d7fbae4734d4bc53999933d71c95.svg
307
+ :height: 20px
308
+ :target: https://community.openastronomy.org/
309
+ .. |Zenodo - Latest DOI| image:: https://zenodo.org/badge/2165383.svg
310
+ :target: https://zenodo.org/badge/latestdoi/2165383
311
+ .. |Continuous Integration Status| image:: https://github.com/sunpy/sunpy/actions/workflows/ci.yml/badge.svg?branch=main
312
+ :target: https://github.com/sunpy/sunpy/actions/workflows/ci.yml
313
+ .. |Google Groups Mailing List| image:: https://upload.wikimedia.org/wikipedia/commons/2/27/Google_Groups_logo.gif
314
+ :height: 20px
315
+ :target: https://groups.google.com/g/sunpy
316
+ .. |sunpy stable documentation| image:: https://readthedocs.org/projects/sunpy/badge/?version=stable
317
+ :target: https://docs.sunpy.org/
318
+ .. |CodeCov Code Coverage| image:: https://codecov.io/gh/sunpy/sunpy/branch/main/graph/badge.svg
319
+ :target: https://codecov.io/gh/sunpy/sunpy
320
+ .. |Powered by NumFOCUS| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A
321
+ :target: https://numfocus.org
322
+ .. |sunpy citation| image:: https://img.shields.io/badge/cite-sunpy-orange
323
+ :target: https://docs.sunpy.org/en/stable/citation.html
324
+ .. |pyOpenSci| image:: https://tinyurl.com/y22nb8up
325
+ :target: https://github.com/pyOpenSci/software-submission/issues/147
326
+
327
+ ``sunpy`` is a Python software package that provides fundamental tools for accessing, loading and interacting with solar physics data in Python.
328
+ It includes an interface for searching and downloading data from multiple data providers, data containers for image and time series data, commonly used solar coordinate frames and associated transformations, as well as other functionality needed for solar data analysis.
329
+
330
+ Installation
331
+ ============
332
+
333
+ We recommended following the `installation guide <https://docs.sunpy.org/en/stable/guide/installation.html>`__ in the ``sunpy`` documentation.
334
+ This will walk you through installing ``sunpy`` and all of its dependencies.
335
+
336
+ Usage
337
+ =====
338
+
339
+ If you are new to ``sunpy``, the best place to start is the `tutorial <https://docs.sunpy.org/en/stable/tutorial/index.html>`__.
340
+ the `example gallery <https://docs.sunpy.org/en/stable/generated/gallery/index.html>`__ also includes a collection of shorter and more specific examples of using ``sunpy``.
341
+
342
+ Changes
343
+ =======
344
+
345
+ See our `changelog <https://docs.sunpy.org/en/stable/whatsnew/changelog.html>`__. for the latest changes in ``sunpy``.
346
+
347
+ Getting Help
348
+ ============
349
+
350
+ For more information or to ask questions about ``sunpy`` or any other SunPy Project package, please check out:
351
+
352
+ - `sunpy documentation <https://docs.sunpy.org/en/stable/>`__
353
+ - `SunPy Affiliated Packages <https://sunpy.org/affiliated>`__
354
+ - `SunPy Chat`_
355
+ - `SunPy mailing list <https://groups.google.com/forum/#!forum/sunpy>`__
356
+ - `SunPy Community forum <https://community.openastronomy.org/c/sunpy/5>`__
357
+
358
+ Acknowledging or Citing ``sunpy``
359
+ =================================
360
+
361
+ If you use ``sunpy`` in your scientific work, we would appreciate your `citing it in your publications <https://docs.sunpy.org/en/stable/citation.html>`__.
362
+ The continued growth and development of ``sunpy`` is dependent on the community being aware of ``sunpy``.
363
+
364
+ Contributing
365
+ ============
366
+
367
+ The SunPy Project is a community-driven open-source project that welcomes any and all contributions.
368
+ Whether you are a developer, student, or user, you can help by contributing code, documentation, or community support.
369
+
370
+ If you would like to get involved, the `Newcomers Guide`_ guide explains the many different ways to contribute to the SunPy Project and also shows how to get set up with a development workflow.
371
+
372
+ Help is always welcome, so come and say hello by joining the `SunPy Chat`_ and look over the `Good First Issues list`_ for the ideal places to start.
373
+
374
+ .. _Newcomers Guide: https://docs.sunpy.org/en/latest/dev_guide/contents/newcomers.html
375
+ .. _Good First Issues list: https://github.com/sunpy/sunpy/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22Good+First+Issue%22
376
+
377
+ Code of Conduct
378
+ ===============
379
+
380
+ When you are interacting with the SunPy Community you are asked to follow our `Code of Conduct <https://sunpy.org/coc>`__.
381
+
382
+ .. _SunPy Chat: https://app.element.io/#/room/#sunpy:openastronomy.org
sunpy-5.0.4/README.rst ADDED
@@ -0,0 +1,108 @@
1
+ *********
2
+ ``sunpy``
3
+ *********
4
+ |SunPy Logo|
5
+
6
+ +-----------------------------------+-----------------------------------+-----------------------------------+
7
+ | Release | Development | Community |
8
+ +===================================+===================================+===================================+
9
+ | |Latest PyPi Version| | |Python Versions| | |Matrix Chat Room| |
10
+ +-----------------------------------+-----------------------------------+-----------------------------------+
11
+ | |Latest Conda Version| | |Project Status: Active| | |OpenAstronomy Discourse| |
12
+ +-----------------------------------+-----------------------------------+-----------------------------------+
13
+ | |Zenodo - Latest DOI| | |Continuous Integration Status| | |Google Groups Mailing List| |
14
+ +-----------------------------------+-----------------------------------+-----------------------------------+
15
+ | |sunpy stable documentation| | |CodeCov Code Coverage| | |Powered by NumFOCUS| |
16
+ +-----------------------------------+-----------------------------------+-----------------------------------+
17
+ | |sunpy citation| | | |pyOpenSci| |
18
+ +-----------------------------------+-----------------------------------+-----------------------------------+
19
+
20
+ .. |SunPy Logo| image:: https://raw.githubusercontent.com/sunpy/sunpy-logo/master/generated/sunpy_logo_landscape.png
21
+ :width: 200px
22
+ .. |Latest PyPi Version| image:: https://img.shields.io/pypi/v/sunpy.svg
23
+ :target: https://pypi.python.org/pypi/sunpy/
24
+ .. |Python Versions| image:: https://img.shields.io/pypi/pyversions/sunpy
25
+ :target: https://pypi.python.org/pypi/sunpy/
26
+ .. |Matrix Chat Room| image:: https://img.shields.io/matrix/sunpy:openastronomy.org.svg?colorB=%23FE7900&label=Chat&logo=matrix&server_fqdn=matrix.org
27
+ :target: https://app.element.io/#/room/#sunpy:openastronomy.org
28
+ .. |Latest Conda Version| image:: https://anaconda.org/conda-forge/sunpy/badges/version.svg
29
+ :target: https://anaconda.org/conda-forge/sunpy
30
+ .. |Project Status: Active| image:: https://www.repostatus.org/badges/latest/active.svg
31
+ :target: https://www.repostatus.org/#active
32
+ .. |OpenAstronomy Discourse| image:: https://cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/try2/original/1X/5e1e3b3cada2d7fbae4734d4bc53999933d71c95.svg
33
+ :height: 20px
34
+ :target: https://community.openastronomy.org/
35
+ .. |Zenodo - Latest DOI| image:: https://zenodo.org/badge/2165383.svg
36
+ :target: https://zenodo.org/badge/latestdoi/2165383
37
+ .. |Continuous Integration Status| image:: https://github.com/sunpy/sunpy/actions/workflows/ci.yml/badge.svg?branch=main
38
+ :target: https://github.com/sunpy/sunpy/actions/workflows/ci.yml
39
+ .. |Google Groups Mailing List| image:: https://upload.wikimedia.org/wikipedia/commons/2/27/Google_Groups_logo.gif
40
+ :height: 20px
41
+ :target: https://groups.google.com/g/sunpy
42
+ .. |sunpy stable documentation| image:: https://readthedocs.org/projects/sunpy/badge/?version=stable
43
+ :target: https://docs.sunpy.org/
44
+ .. |CodeCov Code Coverage| image:: https://codecov.io/gh/sunpy/sunpy/branch/main/graph/badge.svg
45
+ :target: https://codecov.io/gh/sunpy/sunpy
46
+ .. |Powered by NumFOCUS| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A
47
+ :target: https://numfocus.org
48
+ .. |sunpy citation| image:: https://img.shields.io/badge/cite-sunpy-orange
49
+ :target: https://docs.sunpy.org/en/stable/citation.html
50
+ .. |pyOpenSci| image:: https://tinyurl.com/y22nb8up
51
+ :target: https://github.com/pyOpenSci/software-submission/issues/147
52
+
53
+ ``sunpy`` is a Python software package that provides fundamental tools for accessing, loading and interacting with solar physics data in Python.
54
+ It includes an interface for searching and downloading data from multiple data providers, data containers for image and time series data, commonly used solar coordinate frames and associated transformations, as well as other functionality needed for solar data analysis.
55
+
56
+ Installation
57
+ ============
58
+
59
+ We recommended following the `installation guide <https://docs.sunpy.org/en/stable/guide/installation.html>`__ in the ``sunpy`` documentation.
60
+ This will walk you through installing ``sunpy`` and all of its dependencies.
61
+
62
+ Usage
63
+ =====
64
+
65
+ If you are new to ``sunpy``, the best place to start is the `tutorial <https://docs.sunpy.org/en/stable/tutorial/index.html>`__.
66
+ the `example gallery <https://docs.sunpy.org/en/stable/generated/gallery/index.html>`__ also includes a collection of shorter and more specific examples of using ``sunpy``.
67
+
68
+ Changes
69
+ =======
70
+
71
+ See our `changelog <https://docs.sunpy.org/en/stable/whatsnew/changelog.html>`__. for the latest changes in ``sunpy``.
72
+
73
+ Getting Help
74
+ ============
75
+
76
+ For more information or to ask questions about ``sunpy`` or any other SunPy Project package, please check out:
77
+
78
+ - `sunpy documentation <https://docs.sunpy.org/en/stable/>`__
79
+ - `SunPy Affiliated Packages <https://sunpy.org/affiliated>`__
80
+ - `SunPy Chat`_
81
+ - `SunPy mailing list <https://groups.google.com/forum/#!forum/sunpy>`__
82
+ - `SunPy Community forum <https://community.openastronomy.org/c/sunpy/5>`__
83
+
84
+ Acknowledging or Citing ``sunpy``
85
+ =================================
86
+
87
+ If you use ``sunpy`` in your scientific work, we would appreciate your `citing it in your publications <https://docs.sunpy.org/en/stable/citation.html>`__.
88
+ The continued growth and development of ``sunpy`` is dependent on the community being aware of ``sunpy``.
89
+
90
+ Contributing
91
+ ============
92
+
93
+ The SunPy Project is a community-driven open-source project that welcomes any and all contributions.
94
+ Whether you are a developer, student, or user, you can help by contributing code, documentation, or community support.
95
+
96
+ If you would like to get involved, the `Newcomers Guide`_ guide explains the many different ways to contribute to the SunPy Project and also shows how to get set up with a development workflow.
97
+
98
+ Help is always welcome, so come and say hello by joining the `SunPy Chat`_ and look over the `Good First Issues list`_ for the ideal places to start.
99
+
100
+ .. _Newcomers Guide: https://docs.sunpy.org/en/latest/dev_guide/contents/newcomers.html
101
+ .. _Good First Issues list: https://github.com/sunpy/sunpy/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22Good+First+Issue%22
102
+
103
+ Code of Conduct
104
+ ===============
105
+
106
+ When you are interacting with the SunPy Community you are asked to follow our `Code of Conduct <https://sunpy.org/coc>`__.
107
+
108
+ .. _SunPy Chat: https://app.element.io/#/room/#sunpy:openastronomy.org
@@ -55,9 +55,7 @@ release = __version__
55
55
  sunpy_version = Version(__version__)
56
56
  is_release = not(sunpy_version.is_prerelease or sunpy_version.is_devrelease)
57
57
 
58
- # We want to ignore all warnings in a release version.
59
- if is_release:
60
- warnings.simplefilter("ignore")
58
+ # We want to make sure all the following warnings fail the build
61
59
  warnings.filterwarnings("error", category=SunpyDeprecationWarning)
62
60
  warnings.filterwarnings("ignore", message='The sunpy.database module is no longer actively maintained', category=SunpyDeprecationWarning)
63
61
  warnings.filterwarnings("error", category=SunpyPendingDeprecationWarning)
@@ -77,6 +77,13 @@ If a test errors, you can use ``pdb`` to create a debugging session at the momen
77
77
 
78
78
  $ pytest --pdb
79
79
 
80
+ If you see mention of::
81
+
82
+ UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown
83
+
84
+ You will have to either export ``MPLBACKEND = agg`` as an environmental variable or pass it as a command line pre-argument to ``pytest``.
85
+ This comes from the figure tests (see below).
86
+
80
87
  ``self_test``
81
88
  =============
82
89
 
@@ -104,7 +111,7 @@ If this is the case, you will see the following when you run the test suite::
104
111
  * sqlalchemy
105
112
  ...
106
113
  You do not have all the required dependencies installed to run the sunpy test suite.
107
- If you want to run the sunpy tests install the 'tests' extra with `pip install "sunpy[all,tests]"`
114
+ If you want to run the sunpy tests install the 'tests' extra with `pip install "sunpy[tests]"`
108
115
 
109
116
  This does not mean sunpy is broken, but you will need to install the extra packages to ensure a "complete" installation of sunpy and run the entire test suite.
110
117
  It is quite likely that you will run into not having the tests dependencies installed.
@@ -0,0 +1,27 @@
1
+ .. _sunpy-how-to-fix-map-metadata:
2
+
3
+ *************************
4
+ Fixing incorrect metadata
5
+ *************************
6
+
7
+ There will be times where you will come across a FITS files with either incorrect, missing or unparsable metadata and reading these files into `~sunpy.map.Map` will cause an error.
8
+ Therefore, to load these files into a `~sunpy.map.Map`, you will need to correct the metadata beforehand.
9
+
10
+ In the example below, the units in the FITS header, as controlled by the ``CUNIT1`` and ``CUNIT2`` keywords, are incorrect.
11
+ Before loading the file into a `~sunpy.map.Map`, we will correct these keywords to have the correct units.
12
+
13
+ .. code-block:: python
14
+
15
+ >>> from astropy.io import fits
16
+
17
+ >>> from sunpy.map import Map
18
+ >>> import sunpy.data.sample
19
+
20
+ >>> filepath = sunpy.data.sample.AIA_171_IMAGE # doctest: +REMOTE_DATA
21
+ >>> data, header = fits.getdata(filepath, header=True) # doctest: +REMOTE_DATA
22
+ >>> # Note that it is case insensitive for the keys
23
+ >>> header['cunit1'] = 'arcsec' # doctest: +REMOTE_DATA
24
+ >>> header['cunit2'] = 'arcsec' # doctest: +REMOTE_DATA
25
+ >>> updated_map = Map(data, header) # doctest: +REMOTE_DATA
26
+
27
+ This applies for any keyword in the `FITS standard <https://fits.gsfc.nasa.gov/fits_standard.html>`__.
@@ -16,6 +16,7 @@ If you're starting fresh you might want to check out the :ref:`sunpy-tutorial-in
16
16
  create_coords
17
17
  create_custom_map
18
18
  create_custom_timeseries
19
+ fix_map_metadata
19
20
  parse_time
20
21
  remote_data_manager
21
22
  search_multiple_wavelengths
@@ -92,7 +92,7 @@ It includes an interface for searching and downloading data from multiple data p
92
92
  topic_guide/index
93
93
  reference/index
94
94
  whatsnew/index
95
- about
95
+ citation
96
96
  reference/known_issues
97
97
  reference/stability
98
98
  dev_guide/index