@@ -105,7 +105,7 @@ def unmasked(
105105 def circular (
106106 cls ,
107107 shape_2d ,
108- radius_scaled ,
108+ radius ,
109109 pixel_scales ,
110110 sub_size = 1 ,
111111 origin = (0.0 , 0.0 ),
@@ -120,7 +120,7 @@ def circular(
120120 The (y,x) shape of the mask in unit_label of pixels.
121121 pixel_scales : (float, float)
122122 The arc-second to pixel conversion factor of each pixel.
123- radius_scaled : float
123+ radius : float
124124 The radius (in arc seconds) of the circle within which pixels unmasked.
125125 centre: (float, float)
126126 The centre of the circle used to mask pixels.
@@ -133,7 +133,7 @@ def circular(
133133 mask_2d = mask_util .mask_2d_circular_from_shape_2d_pixel_scales_and_radius (
134134 shape_2d = shape_2d ,
135135 pixel_scales = pixel_scales ,
136- radius_scaled = radius_scaled ,
136+ radius_scaled = radius ,
137137 centre = centre ,
138138 )
139139
@@ -149,8 +149,8 @@ def circular(
149149 def circular_annular (
150150 cls ,
151151 shape_2d ,
152- inner_radius_scaled ,
153- outer_radius_scaled ,
152+ inner_radius ,
153+ outer_radius ,
154154 pixel_scales ,
155155 sub_size = 1 ,
156156 origin = (0.0 , 0.0 ),
@@ -166,9 +166,9 @@ def circular_annular(
166166 The (y,x) shape of the mask in unit_label of pixels.
167167 pixel_scales : (float, float)
168168 The arc-second to pixel conversion factor of each pixel.
169- inner_radius_scaled : float
169+ inner_radius : float
170170 The radius (in arc seconds) of the inner circle outside of which pixels are unmasked.
171- outer_radius_scaled : float
171+ outer_radius : float
172172 The radius (in arc seconds) of the outer circle within which pixels are unmasked.
173173 centre: (float, float)
174174 The centre of the annulus used to mask pixels.
@@ -181,8 +181,8 @@ def circular_annular(
181181 mask_2d = mask_util .mask_2d_circular_annular_from_shape_2d_pixel_scales_and_radii (
182182 shape_2d = shape_2d ,
183183 pixel_scales = pixel_scales ,
184- inner_radius_scaled = inner_radius_scaled ,
185- outer_radius_scaled = outer_radius_scaled ,
184+ inner_radius_scaled = inner_radius ,
185+ outer_radius_scaled = outer_radius ,
186186 centre = centre ,
187187 )
188188
@@ -198,9 +198,9 @@ def circular_annular(
198198 def circular_anti_annular (
199199 cls ,
200200 shape_2d ,
201- inner_radius_scaled ,
202- outer_radius_scaled ,
203- outer_radius_2_scaled ,
201+ inner_radius ,
202+ outer_radius ,
203+ outer_radius_2 ,
204204 pixel_scales ,
205205 sub_size = 1 ,
206206 origin = (0.0 , 0.0 ),
@@ -219,12 +219,12 @@ def circular_anti_annular(
219219 The (y,x) shape of the mask in unit_label of pixels.
220220 pixel_scales : (float, float)
221221 The arc-second to pixel conversion factor of each pixel.
222- inner_radius_scaled : float
222+ inner_radius : float
223223 The radius (in arc seconds) of the inner circle inside of which pixels are unmasked.
224- outer_radius_scaled : float
224+ outer_radius : float
225225 The radius (in arc seconds) of the outer circle within which pixels are masked and outside of which they \
226226 are unmasked.
227- outer_radius_2_scaled : float
227+ outer_radius_2 : float
228228 The radius (in arc seconds) of the second outer circle within which pixels are unmasked and outside of \
229229 which they masked.
230230 centre: (float, float)
@@ -238,9 +238,9 @@ def circular_anti_annular(
238238 mask_2d = mask_util .mask_2d_circular_anti_annular_from_shape_2d_pixel_scales_and_radii (
239239 shape_2d = shape_2d ,
240240 pixel_scales = pixel_scales ,
241- inner_radius_scaled = inner_radius_scaled ,
242- outer_radius_scaled = outer_radius_scaled ,
243- outer_radius_2_scaled = outer_radius_2_scaled ,
241+ inner_radius_scaled = inner_radius ,
242+ outer_radius_scaled = outer_radius ,
243+ outer_radius_2_scaled = outer_radius_2 ,
244244 centre = centre ,
245245 )
246246
@@ -256,7 +256,7 @@ def circular_anti_annular(
256256 def elliptical (
257257 cls ,
258258 shape_2d ,
259- major_axis_radius_scaled ,
259+ major_axis_radius ,
260260 axis_ratio ,
261261 phi ,
262262 pixel_scales ,
@@ -273,7 +273,7 @@ def elliptical(
273273 The (y,x) shape of the mask in unit_label of pixels.
274274 pixel_scales : (float, float)
275275 The arc-second to pixel conversion factor of each pixel.
276- major_axis_radius_scaled : float
276+ major_axis_radius : float
277277 The major-axis (in arc seconds) of the ellipse within which pixels are unmasked.
278278 axis_ratio : float
279279 The axis-ratio of the ellipse within which pixels are unmasked.
@@ -291,7 +291,7 @@ def elliptical(
291291 mask_2d = mask_util .mask_2d_elliptical_from_shape_2d_pixel_scales_and_radius (
292292 shape_2d = shape_2d ,
293293 pixel_scales = pixel_scales ,
294- major_axis_radius_scaled = major_axis_radius_scaled ,
294+ major_axis_radius_scaled = major_axis_radius ,
295295 axis_ratio = axis_ratio ,
296296 phi = phi ,
297297 centre = centre ,
@@ -309,10 +309,10 @@ def elliptical(
309309 def elliptical_annular (
310310 cls ,
311311 shape_2d ,
312- inner_major_axis_radius_scaled ,
312+ inner_major_axis_radius ,
313313 inner_axis_ratio ,
314314 inner_phi ,
315- outer_major_axis_radius_scaled ,
315+ outer_major_axis_radius ,
316316 outer_axis_ratio ,
317317 outer_phi ,
318318 pixel_scales ,
@@ -330,14 +330,14 @@ def elliptical_annular(
330330 The (y,x) shape of the mask in unit_label of pixels.
331331 pixel_scales : (float, float)
332332 The arc-second to pixel conversion factor of each pixel.
333- inner_major_axis_radius_scaled : float
333+ inner_major_axis_radius : float
334334 The major-axis (in arc seconds) of the inner ellipse within which pixels are masked.
335335 inner_axis_ratio : float
336336 The axis-ratio of the inner ellipse within which pixels are masked.
337337 inner_phi : float
338338 The rotation angle of the inner ellipse within which pixels are masked, (counter-clockwise from the \
339339 positive x-axis).
340- outer_major_axis_radius_scaled : float
340+ outer_major_axis_radius : float
341341 The major-axis (in arc seconds) of the outer ellipse within which pixels are unmasked.
342342 outer_axis_ratio : float
343343 The axis-ratio of the outer ellipse within which pixels are unmasked.
@@ -355,10 +355,10 @@ def elliptical_annular(
355355 mask_2d = mask_util .mask_2d_elliptical_annular_from_shape_2d_pixel_scales_and_radius (
356356 shape_2d = shape_2d ,
357357 pixel_scales = pixel_scales ,
358- inner_major_axis_radius_scaled = inner_major_axis_radius_scaled ,
358+ inner_major_axis_radius_scaled = inner_major_axis_radius ,
359359 inner_axis_ratio = inner_axis_ratio ,
360360 inner_phi = inner_phi ,
361- outer_major_axis_radius_scaled = outer_major_axis_radius_scaled ,
361+ outer_major_axis_radius_scaled = outer_major_axis_radius ,
362362 outer_axis_ratio = outer_axis_ratio ,
363363 outer_phi = outer_phi ,
364364 centre = centre ,
0 commit comments