plotastrodata 1.7.5__tar.gz → 1.7.6__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 (24) hide show
  1. plotastrodata-1.7.6/MANIFEST.in +6 -0
  2. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/PKG-INFO +1 -1
  3. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/__init__.py +1 -1
  4. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/fits_utils.py +2 -0
  5. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata.egg-info/PKG-INFO +1 -1
  6. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata.egg-info/SOURCES.txt +1 -0
  7. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/LICENSE +0 -0
  8. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/README.md +0 -0
  9. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/analysis_utils.py +0 -0
  10. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/const_utils.py +0 -0
  11. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/coord_utils.py +0 -0
  12. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/ext_utils.py +0 -0
  13. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/fft_utils.py +0 -0
  14. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/fitting_utils.py +0 -0
  15. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/los_utils.py +0 -0
  16. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/matrix_utils.py +0 -0
  17. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/other_utils.py +0 -0
  18. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata/plot_utils.py +0 -0
  19. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata.egg-info/dependency_links.txt +0 -0
  20. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata.egg-info/not-zip-safe +0 -0
  21. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata.egg-info/requires.txt +0 -0
  22. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/plotastrodata.egg-info/top_level.txt +0 -0
  23. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/setup.cfg +0 -0
  24. {plotastrodata-1.7.5 → plotastrodata-1.7.6}/setup.py +0 -0
@@ -0,0 +1,6 @@
1
+ global-exclude .DS_Store
2
+ global-exclude */.DS_Store
3
+ global-exclude __pycache__
4
+ global-exclude *.pyc
5
+ global-exclude *.pyo
6
+ global-exclude *.swp
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plotastrodata
3
- Version: 1.7.5
3
+ Version: 1.7.6
4
4
  Summary: plotastrodata is a tool for astronomers to create figures from FITS files and perform fundamental data analyses with ease.
5
5
  Home-page: https://github.com/yusukeaso-astron/plotastrodata
6
6
  Download-URL: https://github.com/yusukeaso-astron/plotastrodata
@@ -1,4 +1,4 @@
1
1
  import warnings
2
2
 
3
3
  warnings.simplefilter('ignore', FutureWarning)
4
- __version__ = '1.7.5'
4
+ __version__ = '1.7.6'
@@ -271,11 +271,13 @@ class FitsData:
271
271
  case 'Hz':
272
272
  if freq == 0:
273
273
  print('v is frequency because restfreq=0.')
274
+ s = s_in * 1
274
275
  else:
275
276
  s = (1 - s_in / freq) * cu.c_kms - vsys
276
277
  case 'HZ':
277
278
  if freq == 0:
278
279
  print('v is frequency because restfreq=0.')
280
+ s = s_in * 1
279
281
  else:
280
282
  s = (1 - s_in / freq) * cu.c_kms - vsys
281
283
  case 'm/s':
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plotastrodata
3
- Version: 1.7.5
3
+ Version: 1.7.6
4
4
  Summary: plotastrodata is a tool for astronomers to create figures from FITS files and perform fundamental data analyses with ease.
5
5
  Home-page: https://github.com/yusukeaso-astron/plotastrodata
6
6
  Download-URL: https://github.com/yusukeaso-astron/plotastrodata
@@ -1,4 +1,5 @@
1
1
  LICENSE
2
+ MANIFEST.in
2
3
  README.md
3
4
  setup.cfg
4
5
  setup.py
File without changes
File without changes
File without changes
File without changes