plotastrodata 1.1.0__tar.gz → 1.1.1__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.1.0 → plotastrodata-1.1.1}/PKG-INFO +1 -1
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/__init__.py +1 -1
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/analysis_utils.py +1 -1
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/plot_utils.py +2 -3
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata.egg-info/PKG-INFO +1 -1
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/LICENSE +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/README.md +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/const_utils.py +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/fft_utils.py +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/fits_utils.py +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/fitting_utils.py +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/los_utils.py +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata/other_utils.py +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata.egg-info/SOURCES.txt +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata.egg-info/dependency_links.txt +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata.egg-info/not-zip-safe +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata.egg-info/requires.txt +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/plotastrodata.egg-info/top_level.txt +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/setup.cfg +0 -0
- {plotastrodata-1.1.0 → plotastrodata-1.1.1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
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
|
|
@@ -599,7 +599,7 @@ class AstroFrame():
|
|
|
599
599
|
self.Ylim = xlim if self.swapxy else ylim
|
|
600
600
|
if self.quadrants is not None:
|
|
601
601
|
self.Xlim = [0, self.rmax]
|
|
602
|
-
self.Ylim = [0, min(self.vmax
|
|
602
|
+
self.Ylim = [0, min(self.vmax, -self.vmin)]
|
|
603
603
|
if self.fitsimage is not None and self.center is None:
|
|
604
604
|
self.center = FitsData(self.fitsimage).get_center()
|
|
605
605
|
|
|
@@ -642,7 +642,7 @@ class PlotAstroData(AstroFrame):
|
|
|
642
642
|
|
|
643
643
|
Args:
|
|
644
644
|
xskip, yskip (int, optional): Spatial pixel skip. Defaults to 1.
|
|
645
|
-
stretch (str, optional): 'log' means the mapped data are logarithmic. 'asinh' means the mapped data are arc sin hyperbolic. Defaults to 'linear'.
|
|
645
|
+
stretch (str, optional): 'log' means the mapped data are logarithmic. 'asinh' means the mapped data are arc sin hyperbolic. 'power' means the mapped data are power-law (see also stretchpower). Defaults to 'linear'.
|
|
646
646
|
stretchscale (float, optional): color scale is asinh(data / stretchscale). Defaults to None.
|
|
647
647
|
stretchpower (float, optional): color scale is ((data / vmin)**(1 - stretchpower) - 1) / (1 - stretchpower) / ln(10). 0 means the linear scale. 1 means the logarithmic scale. Defaults to 0.
|
|
648
648
|
show_cbar (bool, optional): Show color bar. Defaults to True.
|
|
@@ -771,7 +771,6 @@ class PlotAstroData(AstroFrame):
|
|
|
771
771
|
angonly (bool, optional): True means amp=1 for all. Defaults to False.
|
|
772
772
|
rotation (float, optional): Segment angle is ang + rotation. Defaults to 0..
|
|
773
773
|
cutoff (float, optional): Used when amp and ang are calculated from Stokes U and Q. In the unit of sigma. Defaults to 3..
|
|
774
|
-
sigma (str or float, optional): Noise level or method for measuring it. Defaults to 'out'.
|
|
775
774
|
show_beam (bool, optional): Defaults to True.
|
|
776
775
|
beamcolor (str, optional): Matplotlib color. Defaults to 'gray'.
|
|
777
776
|
"""
|
|
@@ -822,7 +821,7 @@ class PlotAstroData(AstroFrame):
|
|
|
822
821
|
|
|
823
822
|
Args:
|
|
824
823
|
xskip, yskip (int, optional): Spatial pixel skip. Defaults to 1.
|
|
825
|
-
stretch (str, optional): 'log' means the mapped data are logarithmic. 'asinh' means the mapped data are arc sin hyperbolic. Defaults to 'linear'.
|
|
824
|
+
stretch (str, optional): 'log' means the mapped data are logarithmic. 'asinh' means the mapped data are arc sin hyperbolic. 'power' means the mapped data are power-law (see also stretchpower). Defaults to 'linear'.
|
|
826
825
|
stretchscale (float, optional): color scale is asinh(data / stretchscale). Defaults to None.
|
|
827
826
|
stretchpower (float, optional): color scale is ((data / vmin)**(1 - stretchpower) - 1) / (1 - stretchpower) / ln(10). 0 means the linear scale. 1 means the logarithmic scale. Defaults to 0.
|
|
828
827
|
show_beam (bool, optional): Defaults to True.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: plotastrodata
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
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
|