plotastrodata 1.2.2.post1__tar.gz → 1.2.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.
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/PKG-INFO +1 -1
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/__init__.py +1 -1
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/analysis_utils.py +1 -1
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/plot_utils.py +6 -4
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata.egg-info/PKG-INFO +1 -1
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/LICENSE +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/README.md +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/const_utils.py +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/fft_utils.py +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/fits_utils.py +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/fitting_utils.py +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/los_utils.py +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata/other_utils.py +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata.egg-info/SOURCES.txt +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata.egg-info/dependency_links.txt +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata.egg-info/not-zip-safe +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata.egg-info/requires.txt +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata.egg-info/top_level.txt +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/setup.cfg +0 -0
- {plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
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
|
|
@@ -786,7 +786,7 @@ class AstroFrame():
|
|
|
786
786
|
print('pvpa is not specified. pvpa=bmaj is assumed.')
|
|
787
787
|
p = np.radians(bpa - d.pvpa[i])
|
|
788
788
|
b = 1 / np.hypot(np.cos(p) / bmaj, np.sin(p) / bmin)
|
|
789
|
-
d.beam[i] = np.array([
|
|
789
|
+
d.beam[i] = np.array([d.v[1] - d.v[0], b, 0])
|
|
790
790
|
d.Tb[i] = False
|
|
791
791
|
d.cfactor[i] = 1
|
|
792
792
|
if d.fitsimage[i] is not None:
|
|
@@ -118,12 +118,14 @@ class PlotAxes2D():
|
|
|
118
118
|
ax.set_aspect(1)
|
|
119
119
|
if self.xticks is None:
|
|
120
120
|
self.xticks = ax.get_xticks()
|
|
121
|
+
if self.xscale == 'log':
|
|
122
|
+
self.xticks, self.xticklabels \
|
|
123
|
+
= logticks(self.xticks, self.xlim)
|
|
121
124
|
if self.yticks is None:
|
|
122
125
|
self.yticks = ax.get_yticks()
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
self.yticks, self.yticklabels = logticks(self.yticks, self.ylim)
|
|
126
|
+
if self.yscale == 'log':
|
|
127
|
+
self.yticks, self.yticklabels \
|
|
128
|
+
= logticks(self.yticks, self.ylim)
|
|
127
129
|
ax.set_xticks(self.xticks)
|
|
128
130
|
ax.set_yticks(self.yticks)
|
|
129
131
|
if self.xticksminor is not None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
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
|
{plotastrodata-1.2.2.post1 → plotastrodata-1.2.4}/plotastrodata.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|