File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff This file was deleted.
Original file line number Diff line number Diff line change 2121from uxarray .cross_sections import GridCrossSectionAccessor
2222from uxarray .formatting_html import grid_repr
2323from uxarray .grid .area import get_all_face_area_from_coords
24- from uxarray .grid .bounds import _construct_face_bounds_array , _populate_face_bounds
24+ from uxarray .grid .bounds import _populate_face_bounds
2525from uxarray .grid .connectivity import (
2626 _populate_edge_face_connectivity ,
2727 _populate_edge_node_connectivity ,
9999from uxarray .io .utils import _parse_grid_type
100100from uxarray .plot .accessor import GridPlotAccessor
101101from uxarray .subset import GridSubsetAccessor
102- from uxarray .utils .numba import is_numba_function_cached
103102
104103
105104class Grid :
@@ -1428,12 +1427,6 @@ def bounds(self):
14281427
14291428 """
14301429 if "bounds" not in self ._ds :
1431- if not is_numba_function_cached (_construct_face_bounds_array ):
1432- warn (
1433- "Necessary functions for computing the bounds of each face are not yet compiled with Numba. "
1434- "This initial execution will be significantly longer." ,
1435- RuntimeWarning ,
1436- )
14371430 _populate_face_bounds (self )
14381431 return self ._ds ["bounds" ]
14391432
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments