@@ -262,7 +262,7 @@ def signal_to_noise_limited_from_signal_to_noise_limit(self, signal_to_noise_lim
262262
263263 @property
264264 def background_noise_map_counts (self ):
265- """ The background noise_maps mappers in units of counts."""
265+ """ The background noise_maps mappers in unit_label of counts."""
266266 return self .array_from_electrons_per_second_to_counts (self .background_noise_map )
267267
268268 @property
@@ -380,18 +380,18 @@ def __init__(
380380 Parameters
381381 ----------
382382 image : aa.Array
383- The array of the image data_type, in units of electrons per second.
383+ The array of the image data_type, in unit_label of electrons per second.
384384 psf : PSF
385385 An array describing the PSF kernel of the image.
386386 noise_map : NoiseMap | float | ndarray
387- An array describing the RMS standard deviation error in each pixel, preferably in units of electrons per
387+ An array describing the RMS standard deviation error in each pixel, preferably in unit_label of electrons per
388388 second.
389389 background_noise_map : NoiseMap
390390 An array describing the RMS standard deviation error in each pixel due to the background sky noise_map,
391- preferably in units of electrons per second.
391+ preferably in unit_label of electrons per second.
392392 poisson_noise_map : NoiseMap
393393 An array describing the RMS standard deviation error in each pixel due to the Poisson counts of the source,
394- preferably in units of electrons per second.
394+ preferably in unit_label of electrons per second.
395395 exposure_time_map : aa.Array
396396 An array describing the effective exposure time in each imaging pixel.
397397 background_sky_map : aa.Scaled
@@ -468,7 +468,7 @@ def from_fits(
468468 """Factory for loading the imaging data_type from .fits files, as well as computing properties like the noise-map,
469469 exposure-time map, etc. from the imaging-data.
470470
471- This factory also includes a number of routines for converting the imaging-data from units not supported by PyAutoLens \
471+ This factory also includes a number of routines for converting the imaging-data from unit_label not supported by PyAutoLens \
472472 (e.g. adus, electrons) to electrons per second.
473473
474474 Parameters
@@ -550,12 +550,12 @@ def from_fits(
550550 background_sky_map_hdu : int
551551 The hdu the background_sky_map is contained in the .fits file specified by *background_sky_map_path*.
552552 convert_from_electrons : bool
553- If True, the input unblurred_image_1d are in units of electrons and all converted to electrons / second using the exposure \
553+ If True, the input unblurred_image_1d are in unit_label of electrons and all converted to electrons / second using the exposure \
554554 time map.
555555 gain : float
556556 The image gain, used for convert from ADUs.
557557 convert_from_adus : bool
558- If True, the input unblurred_image_1d are in units of adus and all converted to electrons / second using the exposure \
558+ If True, the input unblurred_image_1d are in unit_label of adus and all converted to electrons / second using the exposure \
559559 time map and gain.
560560 """
561561
@@ -865,7 +865,7 @@ def generate_poisson_noise(image, exposure_time_map, seed=-1):
865865 """
866866 Generate a two-dimensional poisson noise_maps-mappers from an image.
867867
868- Values are computed from a Poisson distribution using the image's input values in units of counts.
868+ Values are computed from a Poisson distribution using the image's input values in unit_label of counts.
869869
870870 Parameters
871871 ----------
@@ -904,7 +904,7 @@ def load_noise_map(
904904):
905905 """Factory for loading the noise-map from a .fits file.
906906
907- This factory also includes a number of routines for converting the noise-map from from other units (e.g. \
907+ This factory also includes a number of routines for converting the noise-map from from other unit_label (e.g. \
908908 a weight map) or computing the noise-map from other unblurred_image_1d (e.g. the imaging image and background noise-map).
909909
910910 Parameters
@@ -941,12 +941,12 @@ def load_noise_map(
941941 If True, the noise-map is computed from the observed image and background noise-map \
942942 (see NoiseMap.from_image_and_background_noise_map).
943943 convert_from_electrons : bool
944- If True, the input unblurred_image_1d are in units of electrons and all converted to electrons / second using the exposure \
944+ If True, the input unblurred_image_1d are in unit_label of electrons and all converted to electrons / second using the exposure \
945945 time map.
946946 gain : float
947947 The image gain, used for convert from ADUs.
948948 convert_from_adus : bool
949- If True, the input unblurred_image_1d are in units of adus and all converted to electrons / second using the exposure \
949+ If True, the input unblurred_image_1d are in unit_label of adus and all converted to electrons / second using the exposure \
950950 time map and gain.
951951 """
952952 noise_map_options = sum (
@@ -1027,7 +1027,7 @@ def load_background_noise_map(
10271027):
10281028 """Factory for loading the background noise-map from a .fits file.
10291029
1030- This factory also includes a number of routines for converting the background noise-map from from other units (e.g. \
1030+ This factory also includes a number of routines for converting the background noise-map from from other unit_label (e.g. \
10311031 a weight map).
10321032
10331033 Parameters
@@ -1100,7 +1100,7 @@ def load_poisson_noise_map(
11001100):
11011101 """Factory for loading the Poisson noise-map from a .fits file.
11021102
1103- This factory also includes a number of routines for converting the Poisson noise-map from from other units (e.g. \
1103+ This factory also includes a number of routines for converting the Poisson noise-map from from other unit_label (e.g. \
11041104 a weight map) or computing the Poisson noise_map from other unblurred_image_1d (e.g. the imaging image).
11051105
11061106 Parameters
@@ -1127,12 +1127,12 @@ def load_poisson_noise_map(
11271127 exposure_time_map : ndarray
11281128 The exposure-time map, which the Poisson noise-map can be calculated using.
11291129 convert_from_electrons : bool
1130- If True, the input unblurred_image_1d are in units of electrons and all converted to electrons / second using the exposure \
1130+ If True, the input unblurred_image_1d are in unit_label of electrons and all converted to electrons / second using the exposure \
11311131 time map.
11321132 gain : float
11331133 The image gain, used for convert from ADUs.
11341134 convert_from_adus : bool
1135- If True, the input unblurred_image_1d are in units of adus and all converted to electrons / second using the exposure \
1135+ If True, the input unblurred_image_1d are in unit_label of adus and all converted to electrons / second using the exposure \
11361136 time map and gain.
11371137 """
11381138 poisson_noise_map_options = sum (
0 commit comments