Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions uxarray/grid/bounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ def _construct_face_bounds(
):
"""Compute the bounds of a single face."""
# Check if face_edges contains pole points
has_north_pole = pole_point_inside_polygon(1, face_edges_xyz, face_edges_lonlat)
has_south_pole = pole_point_inside_polygon(-1, face_edges_xyz, face_edges_lonlat)
has_north_pole = pole_point_inside_polygon(1, face_edges_xyz)
has_south_pole = pole_point_inside_polygon(-1, face_edges_xyz)

# Initialize face_latlon_array with INT_FILL_VALUE
face_latlon_array = np.full((2, 2), np.nan, dtype=np.float64)
Expand Down
Loading
Loading