sentinelhub 3.11.0__py3-none-any.whl → 3.11.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sentinelhub/__init__.py +0 -7
- sentinelhub/_version.py +1 -1
- sentinelhub/api/__init__.py +0 -6
- sentinelhub/api/batch/__init__.py +1 -4
- sentinelhub/api/batch/base.py +1 -4
- sentinelhub/api/batch/process.py +159 -410
- sentinelhub/api/batch/process_v2.py +9 -320
- sentinelhub/api/batch/utils.py +3 -130
- sentinelhub/areas.py +2 -78
- sentinelhub/config.py +2 -2
- {sentinelhub-3.11.0.dist-info → sentinelhub-3.11.2.dist-info}/METADATA +3 -5
- {sentinelhub-3.11.0.dist-info → sentinelhub-3.11.2.dist-info}/RECORD +15 -15
- {sentinelhub-3.11.0.dist-info → sentinelhub-3.11.2.dist-info}/WHEEL +1 -1
- {sentinelhub-3.11.0.dist-info → sentinelhub-3.11.2.dist-info}/entry_points.txt +0 -0
- {sentinelhub-3.11.0.dist-info → sentinelhub-3.11.2.dist-info}/licenses/LICENSE.md +0 -0
sentinelhub/__init__.py
CHANGED
|
@@ -5,20 +5,16 @@ This module lists all externally useful classes and functions
|
|
|
5
5
|
from ._version import __version__
|
|
6
6
|
from .api import (
|
|
7
7
|
AsyncProcessRequest,
|
|
8
|
-
BatchCollection,
|
|
9
8
|
BatchProcessClient,
|
|
10
9
|
BatchProcessRequest,
|
|
11
|
-
BatchRequest,
|
|
12
10
|
BatchRequestStatus,
|
|
13
11
|
BatchStatisticalRequest,
|
|
14
|
-
BatchTileStatus,
|
|
15
12
|
BatchUserAction,
|
|
16
13
|
ByocCollection,
|
|
17
14
|
ByocCollectionAdditionalData,
|
|
18
15
|
ByocCollectionBand,
|
|
19
16
|
ByocTile,
|
|
20
17
|
FisRequest,
|
|
21
|
-
SentinelHubBatch,
|
|
22
18
|
SentinelHubBatchStatistical,
|
|
23
19
|
SentinelHubBYOC,
|
|
24
20
|
SentinelHubCatalog,
|
|
@@ -28,8 +24,6 @@ from .api import (
|
|
|
28
24
|
WebFeatureService,
|
|
29
25
|
WmsRequest,
|
|
30
26
|
get_async_running_status,
|
|
31
|
-
monitor_batch_analysis,
|
|
32
|
-
monitor_batch_job,
|
|
33
27
|
monitor_batch_process_analysis,
|
|
34
28
|
monitor_batch_process_job,
|
|
35
29
|
monitor_batch_statistical_analysis,
|
|
@@ -40,7 +34,6 @@ from .api.fis import HistogramType
|
|
|
40
34
|
from .api.ogc import CustomUrlParam
|
|
41
35
|
from .api.opensearch import get_area_dates, get_area_info, get_tile_info, get_tile_info_id
|
|
42
36
|
from .areas import (
|
|
43
|
-
BatchSplitter,
|
|
44
37
|
BBoxSplitter,
|
|
45
38
|
CustomGridSplitter,
|
|
46
39
|
OsmSplitter,
|
sentinelhub/_version.py
CHANGED
sentinelhub/api/__init__.py
CHANGED
|
@@ -3,18 +3,12 @@ The part of the package that implements interface with Sentinel Hub services.
|
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
from .batch import (
|
|
6
|
-
BatchCollection,
|
|
7
6
|
BatchProcessClient,
|
|
8
7
|
BatchProcessRequest,
|
|
9
|
-
BatchRequest,
|
|
10
8
|
BatchRequestStatus,
|
|
11
9
|
BatchStatisticalRequest,
|
|
12
|
-
BatchTileStatus,
|
|
13
10
|
BatchUserAction,
|
|
14
|
-
SentinelHubBatch,
|
|
15
11
|
SentinelHubBatchStatistical,
|
|
16
|
-
monitor_batch_analysis,
|
|
17
|
-
monitor_batch_job,
|
|
18
12
|
monitor_batch_process_analysis,
|
|
19
13
|
monitor_batch_process_job,
|
|
20
14
|
monitor_batch_statistical_analysis,
|
|
@@ -3,12 +3,9 @@ The part of the package that implements interface with Sentinel Hub services.
|
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
from .base import BatchRequestStatus, BatchUserAction
|
|
6
|
-
from .process import
|
|
7
|
-
from .process_v2 import BatchProcessClient, BatchProcessRequest
|
|
6
|
+
from .process import BatchProcessClient, BatchProcessRequest
|
|
8
7
|
from .statistical import BatchStatisticalRequest, SentinelHubBatchStatistical
|
|
9
8
|
from .utils import (
|
|
10
|
-
monitor_batch_analysis,
|
|
11
|
-
monitor_batch_job,
|
|
12
9
|
monitor_batch_process_analysis,
|
|
13
10
|
monitor_batch_process_job,
|
|
14
11
|
monitor_batch_statistical_analysis,
|
sentinelhub/api/batch/base.py
CHANGED
|
@@ -26,8 +26,6 @@ class BatchRequestStatus(Enum):
|
|
|
26
26
|
PROCESSING = "PROCESSING"
|
|
27
27
|
DONE = "DONE"
|
|
28
28
|
FAILED = "FAILED"
|
|
29
|
-
PARTIAL = "PARTIAL"
|
|
30
|
-
CANCELED = "CANCELED"
|
|
31
29
|
STOPPED = "STOPPED"
|
|
32
30
|
|
|
33
31
|
|
|
@@ -36,9 +34,8 @@ class BatchUserAction(Enum):
|
|
|
36
34
|
|
|
37
35
|
START = "START"
|
|
38
36
|
ANALYSE = "ANALYSE"
|
|
39
|
-
NONE = "NONE"
|
|
40
|
-
CANCEL = "CANCEL"
|
|
41
37
|
STOP = "STOP"
|
|
38
|
+
NONE = "NONE"
|
|
42
39
|
|
|
43
40
|
|
|
44
41
|
class StoppedStatusReason(Enum):
|