File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1111class JobSplittingFailure (Exception ):
1212 pass
1313
14+
1415class _BoundingBox (NamedTuple ):
1516 """Simple NamedTuple container for a bounding box"""
1617
Original file line number Diff line number Diff line change 11import pytest
22import shapely
33
4- from openeo .extra .job_management .job_splitting import (
4+ from openeo .extra .job_management ._job_splitting import (
55 JobSplittingFailure ,
66 _BoundingBox ,
77 _SizeBasedTileGrid ,
@@ -40,7 +40,6 @@ def mock_dict_with_crs_utm():
4040 }
4141
4242
43-
4443class TestBoundingBox :
4544 def test_basic (self ):
4645 bbox = _BoundingBox (1 , 2 , 3 , 4 )
@@ -89,7 +88,6 @@ def test_as_polygon(self):
8988
9089
9190class TestSizeBasedTileGrid :
92-
9391 def test_from_size_projection (self ):
9492 splitter = _SizeBasedTileGrid .from_size_projection (0.1 , "EPSG:4326" )
9593 assert splitter .epsg == 4326
You can’t perform that action at this time.
0 commit comments