From 7840efb73f1b8a8478e2f199c844fa9143ebca01 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Sat, 10 Aug 2024 05:23:33 +0000 Subject: [PATCH 1/3] #202 Fix aspect ratio of qlook map images --- decode/qlook.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/decode/qlook.py b/decode/qlook.py index 44c7dc6..35c2311 100644 --- a/decode/qlook.py +++ b/decode/qlook.py @@ -294,6 +294,7 @@ def daisy( ) ax.set_xlim(-map_lim, map_lim) ax.set_ylim(-map_lim, map_lim) + ax.axes.set_aspect("equal", "datalim") for ax in axes: # type: ignore ax.grid(True) @@ -554,6 +555,7 @@ def raster( ) ax.set_xlim(-map_lim, map_lim) ax.set_ylim(-map_lim, map_lim) + ax.axes.set_aspect("equal", "datalim") for ax in axes: # type: ignore ax.grid(True) From 628143d3841772e6c3498fce7bb8d2a04b65fbf4 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Sat, 10 Aug 2024 05:24:31 +0000 Subject: [PATCH 2/3] =?UTF-8?q?#202=20Update=20package=20version=20(2024.8?= =?UTF-8?q?.2=20=E2=86=92=202024.8.3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CITATION.cff | 2 +- README.md | 2 +- decode/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index a99547d..e2fdd71 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,7 +3,7 @@ message: "If you use this software, please cite it as below." title: "de:code" abstract: "DESHIMA code for data analysis" -version: 2024.8.2 +version: 2024.8.3 date-released: 2024-08-09 license: "MIT" doi: "10.5281/zenodo.3384216" diff --git a/README.md b/README.md index 05bbfa2..089e025 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ DESHIMA code for data analysis ## Installation ```shell -pip install decode==2024.8.2 +pip install decode==2024.8.3 ``` ## Quick look diff --git a/decode/__init__.py b/decode/__init__.py index 2d04560..9c18d27 100644 --- a/decode/__init__.py +++ b/decode/__init__.py @@ -10,7 +10,7 @@ "select", "utils", ] -__version__ = "2024.8.2" +__version__ = "2024.8.3" # submodules diff --git a/pyproject.toml b/pyproject.toml index ccb185b..e9aae3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "decode" -version = "2024.8.2" +version = "2024.8.3" description = "DESHIMA code for data analysis" authors = [ "Akio Taniguchi ", From 2060e3f18919b15e80e6edde676aba1291ccb81e Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Sat, 10 Aug 2024 05:24:57 +0000 Subject: [PATCH 3/3] #202 Update release date --- CITATION.cff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CITATION.cff b/CITATION.cff index e2fdd71..b1d2ddd 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,7 +4,7 @@ message: "If you use this software, please cite it as below." title: "de:code" abstract: "DESHIMA code for data analysis" version: 2024.8.3 -date-released: 2024-08-09 +date-released: 2024-08-10 license: "MIT" doi: "10.5281/zenodo.3384216" url: "https://github.com/deshima-dev/decode"