From b9ea9239d66956ba6e77ff5469103800e57f904e Mon Sep 17 00:00:00 2001 From: bvandekerkhof Date: Fri, 1 Nov 2024 09:22:10 +0100 Subject: [PATCH] Update typehint in post_processing.py Signed-off-by: bvandekerkhof --- src/pyelq/support_functions/post_processing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pyelq/support_functions/post_processing.py b/src/pyelq/support_functions/post_processing.py index e05f53c..4267148 100644 --- a/src/pyelq/support_functions/post_processing.py +++ b/src/pyelq/support_functions/post_processing.py @@ -153,7 +153,7 @@ def calculate_rectangular_statistics( def create_lla_polygons_from_xy_points( - points_array: np.ndarray, + points_array: list[np.ndarray], ref_latitude: float, ref_longitude: float, ref_altitude: float, @@ -166,7 +166,7 @@ def create_lla_polygons_from_xy_points( A polygon is only created if the boolean mask for that pixel is True. Args: - points_array (np.ndarray): Grid of points in ENU coordinates. + points_array (list[np.ndarray]): List of arrays of grid of points in ENU coordinates. ref_latitude (float): Reference latitude in degrees of ENU coordinate system. ref_longitude (float): Reference longitude in degrees of ENU coordinate system. ref_altitude (float): Reference altitude in meters of ENU coordinate system.