@@ -39,7 +39,7 @@ class MapperRectangular(AbstractMapper):
3939 `Delaunay` triangulation, where every `grid_slim` pixel maps to three Delaunay pixels (the corners of the
4040 triangles) with varying interpolation weights .
4141
42- For a `RectangularMagnification ` mesh every pixel in the masked data maps to only one pixel, thus the second
42+ For a `RectangularAdaptDensity ` mesh every pixel in the masked data maps to only one pixel, thus the second
4343 dimension of `pix_indexes_for_sub_slim_index` is always of size 1.
4444
4545 The mapper allows us to create a mapping matrix, which is a matrix representing the mapping between every
@@ -64,7 +64,7 @@ def shape_native(self) -> Tuple[int, ...]:
6464 def pix_sub_weights (self ) -> PixSubWeights :
6565 """
6666 Computes the following three quantities describing the mappings between of every sub-pixel in the masked data
67- and pixel in the `RectangularMagnification ` mesh.
67+ and pixel in the `RectangularAdaptDensity ` mesh.
6868
6969 - `pix_indexes_for_sub_slim_index`: the mapping of every data pixel (given its `sub_slim_index`)
7070 to mesh pixels (given their `pix_indexes`).
@@ -79,18 +79,18 @@ def pix_sub_weights(self) -> PixSubWeights:
7979 The `sub_slim_index` refers to the masked data sub-pixels and `pix_indexes` the mesh pixel indexes,
8080 for example:
8181
82- - `pix_indexes_for_sub_slim_index[0, 0] = 2`: The data's first (index 0) sub-pixel maps to the RectangularMagnification
82+ - `pix_indexes_for_sub_slim_index[0, 0] = 2`: The data's first (index 0) sub-pixel maps to the RectangularAdaptDensity
8383 mesh's third (index 2) pixel.
8484
85- - `pix_indexes_for_sub_slim_index[2, 0] = 4`: The data's third (index 2) sub-pixel maps to the RectangularMagnification
85+ - `pix_indexes_for_sub_slim_index[2, 0] = 4`: The data's third (index 2) sub-pixel maps to the RectangularAdaptDensity
8686 mesh's fifth (index 4) pixel.
8787
8888 The second dimension of the array `pix_indexes_for_sub_slim_index`, which is 0 in both examples above, is used
8989 for cases where a data pixel maps to more than one mesh pixel (for example a `Delaunay` triangulation
9090 where each data pixel maps to 3 Delaunay triangles with interpolation weights). The weights of multiple mappings
9191 are stored in the array `pix_weights_for_sub_slim_index`.
9292
93- For a RectangularMagnification pixelization each data sub-pixel maps to a single mesh pixel, thus the second
93+ For a RectangularAdaptDensity pixelization each data sub-pixel maps to a single mesh pixel, thus the second
9494 dimension of the array `pix_indexes_for_sub_slim_index` 1 and all entries in `pix_weights_for_sub_slim_index`
9595 are equal to 1.0.
9696 """
0 commit comments