◆ read_region()Read a region as a new
There are several options to read a region of the data unit:
For example, to read the HDU region from position (50, 80) to position (100, 120) into an existing raster at position (25, 40), do: const FileMemRegions<2> regions({25, 40}, {{50, 80}, {100, 120}});
image.read_region_to(regions, raster);
Mapping between an in-file (FITS image data unit) region and an in-memory (raster) region for reading... Definition: FileMemRegions.h:22 where In simpler cases, where the in-file or in-memory front position is 0, factories can be used, e.g. to read into position 0 of the raster: image.read_region_to<2>({{50, 80}, {100, 120}}, raster);
|