Skip to content

Commit d18f767

Browse files
authored
fix API-breaking change in ducc0 (#220)
1 parent b26525b commit d18f767

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pymaster/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,8 @@ def _map2alm_healpy(map, spin, sht_info, alm_info):
852852
def _catalog2alm_ducc0(values, positions, spin, lmax):
853853
values = np.atleast_2d(values)
854854
alm = ducc0.sht.adjoint_synthesis_general(lmax=lmax, map=values,
855-
loc=positions.T, spin=int(spin))
855+
loc=positions.T, spin=int(spin),
856+
epsilon=1E-5)
856857
return alm
857858

858859

0 commit comments

Comments
 (0)