Skip to content

Commit

Permalink
#203 Merge pull request from deshima-dev/astropenguin/issue202
Browse files Browse the repository at this point in the history
Fix aspect ratio of qlook map images
  • Loading branch information
astropenguin authored Aug 10, 2024
2 parents 817b953 + 2060e3f commit 409f4df
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ message: "If you use this software, please cite it as below."

title: "de:code"
abstract: "DESHIMA code for data analysis"
version: 2024.8.2
date-released: 2024-08-09
version: 2024.8.3
date-released: 2024-08-10
license: "MIT"
doi: "10.5281/zenodo.3384216"
url: "https://github.com/deshima-dev/decode"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion decode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"select",
"utils",
]
__version__ = "2024.8.2"
__version__ = "2024.8.3"


# submodules
Expand Down
2 changes: 2 additions & 0 deletions decode/qlook.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <taniguchi@a.phys.nagoya-u.ac.jp>",
Expand Down

0 comments on commit 409f4df

Please sign in to comment.