IAOCEA / healpix-convolution

Other
1 stars 2 forks source link

convolution of regional maps #18

Closed keewis closed 1 month ago

keewis commented 3 months ago

Full map convolution has the advantage that the domain does not have any edges. Thus, we can simply compute the kernel using the neighbours we found.

However, for subdomains that's not the case: we have edges, and thus have to deal with boundary conditions. With 2D convolution (for example, the convolution of images), this is usually resolved by either padding the input image (with various modes), or by cropping the output image.

To do the same for healpix we have to either:

keewis commented 1 month ago

for simpler / more general implementation, we chose to pad the map instead (see #25). Which means this can be closed?