Skip to content

Commit

Permalink
Merge pull request #255 from amaurea/fix_alm2map_2d
Browse files Browse the repository at this point in the history
Fix alm2map 2d
  • Loading branch information
amaurea authored Apr 11, 2024
2 parents 3a8b6e3 + 1829ac7 commit cc0a46f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pixell/curvedsky.py
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ def analyse_geometry(shape, wcs, tol=1e-6):
# Flipped geometry
wshape, wwcs = flip_geometry(shape, wcs, flip)
# Get phi0 for the flipped geo
phi0 = wwcs.wcs_pix2world(0, 0, 0)[0]*utils.degree
phi0 = wcsutils.nobcheck(wwcs).wcs_pix2world(0, wshape[-2]//2, 0)[0]*utils.degree
# Check how we fit with a predefined ducc geometry
ducc_geo = get_ducc_geo(wwcs, shape=wshape, tol=tol)
# If ducc_geo exists, then this map can either be used directly in
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.23.8
current_version = 0.23.10
commit = True
tag = True

Expand Down

0 comments on commit cc0a46f

Please sign in to comment.