plotastrodata 1.6.4__tar.gz → 1.6.5__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.6.4 → plotastrodata-1.6.5}/PKG-INFO +2 -2
- plotastrodata-1.6.5/plotastrodata/__init__.py +4 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/plot_utils.py +27 -14
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata.egg-info/PKG-INFO +2 -2
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata.egg-info/requires.txt +1 -1
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/setup.cfg +1 -1
- plotastrodata-1.6.4/plotastrodata/__init__.py +0 -4
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/LICENSE +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/README.md +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/analysis_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/const_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/coord_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/ext_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/fft_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/fits_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/fitting_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/los_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/matrix_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata/other_utils.py +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata.egg-info/SOURCES.txt +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata.egg-info/dependency_links.txt +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata.egg-info/not-zip-safe +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/plotastrodata.egg-info/top_level.txt +0 -0
- {plotastrodata-1.6.4 → plotastrodata-1.6.5}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.5
|
|
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
|
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: astropy
|
|
14
|
+
Requires-Dist: astropy>=7.2
|
|
15
15
|
Requires-Dist: corner
|
|
16
16
|
Requires-Dist: dynesty
|
|
17
17
|
Requires-Dist: emcee
|
|
@@ -408,7 +408,7 @@ class PlotAstroData(AstroFrame):
|
|
|
408
408
|
figsize = (ncols * 2 / sqrt_a, max(nrows*2, 3) * sqrt_a)
|
|
409
409
|
for ch in range(nchan):
|
|
410
410
|
n, i, j = ch2nij(ch)
|
|
411
|
-
if internalfig:
|
|
411
|
+
if internalfig and n not in plt.get_fignums():
|
|
412
412
|
fig = plt.figure(n, figsize=figsize)
|
|
413
413
|
sharex = ax[nij2ch(n, i - 1, j)] if i > 0 else None
|
|
414
414
|
sharey = ax[nij2ch(n, i, j - 1)] if j > 0 else None
|
|
@@ -431,8 +431,10 @@ class PlotAstroData(AstroFrame):
|
|
|
431
431
|
self.allchan = np.arange(nv)
|
|
432
432
|
self.bottomleft = nij2ch(np.arange(npages), nrows - 1, 0)
|
|
433
433
|
self.channelnumber = channelnumber
|
|
434
|
+
self.v = v
|
|
434
435
|
|
|
435
|
-
def vskipfill(c: np.ndarray, v_in: np.ndarray = None
|
|
436
|
+
def vskipfill(c: np.ndarray, v_in: np.ndarray = None
|
|
437
|
+
) -> np.ndarray:
|
|
436
438
|
"""Skip and fill channels with nan.
|
|
437
439
|
|
|
438
440
|
Args:
|
|
@@ -444,7 +446,14 @@ class PlotAstroData(AstroFrame):
|
|
|
444
446
|
"""
|
|
445
447
|
if np.ndim(c) == 3:
|
|
446
448
|
if v_in is not None:
|
|
447
|
-
|
|
449
|
+
dv_org = self.v[1] - self.v[0]
|
|
450
|
+
dv_in = v_in[1] - v_in[0]
|
|
451
|
+
if np.abs(dv_in - dv_org) / dv_org > 0.01:
|
|
452
|
+
print('Velocity resolution mismatch (>1%).',
|
|
453
|
+
'The cube needs to be regridded',
|
|
454
|
+
'outside plotastrodata.')
|
|
455
|
+
k0 = np.argmin(np.abs(self.v - v_in[0]))
|
|
456
|
+
if k0 > 0:
|
|
448
457
|
prenan = np.full((k0, *np.shape(c)[1:]), np.nan)
|
|
449
458
|
d = np.append(prenan, c, axis=0)
|
|
450
459
|
else:
|
|
@@ -454,8 +463,9 @@ class PlotAstroData(AstroFrame):
|
|
|
454
463
|
d = np.full((nv, *np.shape(c)), c)
|
|
455
464
|
n = nchan if channelnumber is None else nv
|
|
456
465
|
shape = (n - len(d), len(d[0]), len(d[0, 0]))
|
|
457
|
-
|
|
458
|
-
|
|
466
|
+
postnan = np.full(shape, d[0] * np.nan)
|
|
467
|
+
d = np.append(d, postnan, axis=0)
|
|
468
|
+
return d
|
|
459
469
|
self.vskipfill = vskipfill
|
|
460
470
|
|
|
461
471
|
def _map_init(self, kw: dict) -> tuple:
|
|
@@ -767,15 +777,18 @@ class PlotAstroData(AstroFrame):
|
|
|
767
777
|
cb.ax.tick_params(labelsize=14)
|
|
768
778
|
font = mpl.font_manager.FontProperties(size=16)
|
|
769
779
|
cb.ax.yaxis.label.set_font_properties(font)
|
|
780
|
+
if cbticks is not None and ch // self.rowcol == 0:
|
|
781
|
+
cbticks = np.array(cbticks)
|
|
782
|
+
match stretch:
|
|
783
|
+
case 'log':
|
|
784
|
+
cbticks = np.log10(cbticks)
|
|
785
|
+
case 'asinh':
|
|
786
|
+
cbticks = np.arcsinh(cbticks / stretchscale)
|
|
787
|
+
case 'power':
|
|
788
|
+
p = 1 - stretchpower
|
|
789
|
+
cbticks = (cbticks / cmin_org)**p - 1
|
|
790
|
+
cbticks = cbticks / p / np.log(10)
|
|
770
791
|
if cbticks is not None:
|
|
771
|
-
if stretch == 'log':
|
|
772
|
-
cbticks = np.log10(cbticks)
|
|
773
|
-
elif stretch == 'asinh':
|
|
774
|
-
cbticks = np.arcsinh(np.array(cbticks) / stretchscale)
|
|
775
|
-
elif stretch == 'power':
|
|
776
|
-
cbticks = np.array(cbticks)
|
|
777
|
-
p = 1 - stretchpower
|
|
778
|
-
cbticks = ((cbticks / cmin_org)**p - 1) / p / np.log(10)
|
|
779
792
|
cb.set_ticks(cbticks)
|
|
780
793
|
if cbticklabels is not None:
|
|
781
794
|
cb.set_ticklabels(cbticklabels)
|
|
@@ -1112,7 +1125,7 @@ class PlotAstroData(AstroFrame):
|
|
|
1112
1125
|
fig.savefig(fname, **_kw)
|
|
1113
1126
|
if show:
|
|
1114
1127
|
plt.show()
|
|
1115
|
-
plt.close()
|
|
1128
|
+
plt.close('all')
|
|
1116
1129
|
|
|
1117
1130
|
def get_figax(self) -> tuple[object, object]:
|
|
1118
1131
|
"""Output the external fig and ax after plotting.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.5
|
|
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
|
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: astropy
|
|
14
|
+
Requires-Dist: astropy>=7.2
|
|
15
15
|
Requires-Dist: corner
|
|
16
16
|
Requires-Dist: dynesty
|
|
17
17
|
Requires-Dist: emcee
|
|
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
|