plotastrodata 1.4.15__tar.gz → 1.4.16__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.
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/PKG-INFO +1 -1
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/__init__.py +1 -1
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/analysis_utils.py +9 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata.egg-info/PKG-INFO +1 -1
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/LICENSE +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/README.md +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/const_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/coord_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/ext_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/fft_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/fits_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/fitting_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/los_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/matrix_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/other_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata/plot_utils.py +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata.egg-info/SOURCES.txt +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata.egg-info/dependency_links.txt +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata.egg-info/not-zip-safe +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata.egg-info/requires.txt +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/plotastrodata.egg-info/top_level.txt +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/setup.cfg +0 -0
- {plotastrodata-1.4.15 → plotastrodata-1.4.16}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.16
|
|
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
|
|
@@ -678,6 +678,15 @@ class AstroFrame():
|
|
|
678
678
|
if d.data[i] is not None:
|
|
679
679
|
d.sigma_org[i] = d.sigma[i]
|
|
680
680
|
d.sigma[i] = estimate_rms(d.data[i], d.sigma[i])
|
|
681
|
+
if (not self.pv
|
|
682
|
+
and self.center is not None
|
|
683
|
+
and d.center[i] is not None
|
|
684
|
+
and d.center[i] != self.center
|
|
685
|
+
):
|
|
686
|
+
cx, cy = coord2xy(d.center[i], self.center) * 3600
|
|
687
|
+
grid[0] += cx
|
|
688
|
+
grid[1] += cy
|
|
689
|
+
d.center[i] = self.center
|
|
681
690
|
d.data[i], grid = trim(data=d.data[i],
|
|
682
691
|
x=grid[0], y=grid[1], v=grid[2],
|
|
683
692
|
xlim=self.xlim, ylim=self.ylim,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.16
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|