Skip to content

Commit

Permalink
Update typehint in post_processing.py
Browse files Browse the repository at this point in the history
Signed-off-by: bvandekerkhof <[email protected]>
  • Loading branch information
bvandekerkhof committed Nov 1, 2024
1 parent fc1dffe commit b9ea923
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyelq/support_functions/post_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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.
Expand Down

0 comments on commit b9ea923

Please sign in to comment.