earthengine-api 1.5.23__py3-none-any.whl → 1.5.24__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.
Potentially problematic release.
This version of earthengine-api might be problematic. Click here for more details.
- {earthengine_api-1.5.23.dist-info → earthengine_api-1.5.24.dist-info}/METADATA +1 -1
- earthengine_api-1.5.24.dist-info/RECORD +107 -0
- ee/__init__.py +3 -3
- ee/_arg_types.py +6 -6
- ee/_cloud_api_utils.py +35 -35
- ee/_helpers.py +2 -2
- ee/apifunction.py +10 -10
- ee/apitestcase.py +9 -9
- ee/batch.py +39 -39
- ee/blob.py +2 -2
- ee/cli/commands.py +15 -15
- ee/cli/utils.py +5 -5
- ee/collection.py +3 -3
- ee/computedobject.py +6 -6
- ee/confusionmatrix.py +2 -2
- ee/customfunction.py +8 -8
- ee/data.py +55 -55
- ee/daterange.py +2 -2
- ee/deprecation.py +4 -4
- ee/dictionary.py +2 -2
- ee/ee_array.py +2 -2
- ee/ee_date.py +2 -2
- ee/ee_list.py +2 -3
- ee/element.py +3 -3
- ee/errormargin.py +2 -2
- ee/feature.py +5 -5
- ee/featurecollection.py +5 -5
- ee/function.py +5 -5
- ee/geometry.py +10 -10
- ee/image.py +19 -19
- ee/image_converter.py +2 -2
- ee/imagecollection.py +7 -7
- ee/oauth.py +4 -4
- ee/pixeltype.py +2 -2
- ee/projection.py +2 -2
- ee/serializer.py +5 -5
- ee/table_converter.py +4 -4
- ee/tests/blob_test.py +3 -3
- ee/tests/classifier_test.py +3 -3
- ee/tests/clusterer_test.py +3 -3
- ee/tests/confusionmatrix_test.py +3 -3
- ee/tests/daterange_test.py +4 -4
- ee/tests/deprecation_test.py +2 -2
- ee/tests/dictionary_test.py +3 -3
- ee/tests/ee_array_test.py +3 -3
- ee/tests/ee_date_test.py +4 -4
- ee/tests/ee_list_test.py +3 -3
- ee/tests/ee_number_test.py +3 -3
- ee/tests/ee_string_test.py +3 -3
- ee/tests/feature_test.py +4 -4
- ee/tests/featurecollection_test.py +3 -3
- ee/tests/filter_test.py +4 -4
- ee/tests/geometry_point_test.py +3 -3
- ee/tests/image_test.py +3 -3
- ee/tests/imagecollection_test.py +3 -3
- ee/tests/join_test.py +3 -3
- ee/tests/kernel_test.py +3 -3
- ee/tests/model_test.py +5 -5
- ee/tests/pixeltype_test.py +5 -5
- ee/tests/projection_test.py +3 -3
- ee/tests/reducer_test.py +3 -3
- ee/tests/serializer_test.py +4 -4
- ee/tests/table_converter_test.py +3 -3
- ee/tests/terrain_test.py +3 -3
- earthengine_api-1.5.23.dist-info/RECORD +0 -107
- {earthengine_api-1.5.23.dist-info → earthengine_api-1.5.24.dist-info}/WHEEL +0 -0
- {earthengine_api-1.5.23.dist-info → earthengine_api-1.5.24.dist-info}/entry_points.txt +0 -0
- {earthengine_api-1.5.23.dist-info → earthengine_api-1.5.24.dist-info}/licenses/LICENSE +0 -0
- {earthengine_api-1.5.23.dist-info → earthengine_api-1.5.24.dist-info}/top_level.txt +0 -0
ee/tests/ee_list_test.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
"""Test for the ee.list module."""
|
|
3
3
|
import json
|
|
4
|
-
from typing import Any
|
|
4
|
+
from typing import Any
|
|
5
5
|
|
|
6
6
|
import unittest
|
|
7
7
|
import ee
|
|
@@ -9,8 +9,8 @@ from ee import apitestcase
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
def make_expression_graph(
|
|
12
|
-
function_invocation_value:
|
|
13
|
-
) ->
|
|
12
|
+
function_invocation_value: dict[str, Any]
|
|
13
|
+
) -> dict[str, Any]:
|
|
14
14
|
return {
|
|
15
15
|
'result': '0',
|
|
16
16
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/ee_number_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Test for the ee.number module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
import unittest
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
@@ -11,8 +11,8 @@ from ee import apitestcase
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
def make_expression_graph(
|
|
14
|
-
function_invocation_value:
|
|
15
|
-
) ->
|
|
14
|
+
function_invocation_value: dict[str, Any],
|
|
15
|
+
) -> dict[str, Any]:
|
|
16
16
|
return {
|
|
17
17
|
'result': '0',
|
|
18
18
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/ee_string_test.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
"""Test for the ee.string module."""
|
|
3
3
|
import json
|
|
4
|
-
from typing import Any
|
|
4
|
+
from typing import Any
|
|
5
5
|
import unittest
|
|
6
6
|
|
|
7
7
|
import unittest
|
|
@@ -10,8 +10,8 @@ from ee import apitestcase
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
def make_expression_graph(
|
|
13
|
-
function_invocation_value:
|
|
14
|
-
) ->
|
|
13
|
+
function_invocation_value: dict[str, Any]
|
|
14
|
+
) -> dict[str, Any]:
|
|
15
15
|
return {
|
|
16
16
|
'result': '0',
|
|
17
17
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/feature_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Test for the ee.feature module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
from unittest import mock
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
@@ -40,7 +40,7 @@ FEATURE_A_GRAPH = {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
def right_maxerror_proj(function_name: str) ->
|
|
43
|
+
def right_maxerror_proj(function_name: str) -> dict[str, Any]:
|
|
44
44
|
return {
|
|
45
45
|
'result': '0',
|
|
46
46
|
'values': {
|
|
@@ -61,8 +61,8 @@ def right_maxerror_proj(function_name: str) -> Dict[str, Any]:
|
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
def make_expression_graph(
|
|
64
|
-
function_invocation_value:
|
|
65
|
-
) ->
|
|
64
|
+
function_invocation_value: dict[str, Any],
|
|
65
|
+
) -> dict[str, Any]:
|
|
66
66
|
return {
|
|
67
67
|
'result': '0',
|
|
68
68
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Test for the ee.featurecollection module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
from unittest import mock
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
@@ -12,8 +12,8 @@ from ee import apitestcase
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def make_expression_graph(
|
|
15
|
-
function_invocation_value:
|
|
16
|
-
) ->
|
|
15
|
+
function_invocation_value: dict[str, Any],
|
|
16
|
+
) -> dict[str, Any]:
|
|
17
17
|
return {
|
|
18
18
|
'result': '0',
|
|
19
19
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/filter_test.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import datetime
|
|
5
5
|
import json
|
|
6
|
-
from typing import Any
|
|
6
|
+
from typing import Any
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
9
9
|
import ee
|
|
@@ -11,15 +11,15 @@ from ee import apitestcase
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
def make_expression_graph(
|
|
14
|
-
function_invocation_value:
|
|
15
|
-
) ->
|
|
14
|
+
function_invocation_value: dict[str, Any],
|
|
15
|
+
) -> dict[str, Any]:
|
|
16
16
|
return {
|
|
17
17
|
'result': '0',
|
|
18
18
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
def max_error_expression(max_error: float) ->
|
|
22
|
+
def max_error_expression(max_error: float) -> dict[str, Any]:
|
|
23
23
|
return {
|
|
24
24
|
'functionInvocationValue': {
|
|
25
25
|
'functionName': 'ErrorMargin',
|
ee/tests/geometry_point_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Test for the ee.geometry module Point methods."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
from unittest import mock
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
@@ -45,8 +45,8 @@ PROJ = {
|
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
def make_expression_graph_geom(
|
|
48
|
-
function_name: str, args:
|
|
49
|
-
) ->
|
|
48
|
+
function_name: str, args: dict[str, Any]
|
|
49
|
+
) -> dict[str, Any]:
|
|
50
50
|
return {
|
|
51
51
|
'result': '0',
|
|
52
52
|
'values': {
|
ee/tests/image_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Test for the ee.image module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
from unittest import mock
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
@@ -37,8 +37,8 @@ IMAGE_C = {
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
def make_expression_graph(
|
|
40
|
-
function_invocation_value:
|
|
41
|
-
) ->
|
|
40
|
+
function_invocation_value: dict[str, Any],
|
|
41
|
+
) -> dict[str, Any]:
|
|
42
42
|
return {
|
|
43
43
|
'result': '0',
|
|
44
44
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/imagecollection_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Test for the ee.imagecollection module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
from unittest import mock
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
@@ -11,8 +11,8 @@ from ee import apitestcase
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
def make_expression_graph(
|
|
14
|
-
function_invocation_value:
|
|
15
|
-
) ->
|
|
14
|
+
function_invocation_value: dict[str, Any],
|
|
15
|
+
) -> dict[str, Any]:
|
|
16
16
|
return {
|
|
17
17
|
'result': '0',
|
|
18
18
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/join_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Tests for the ee.Join module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
|
|
7
7
|
import unittest
|
|
8
8
|
import ee
|
|
@@ -13,8 +13,8 @@ SIMPLE = 'Join.simple'
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
def make_expression_graph(
|
|
16
|
-
function_invocation_value:
|
|
17
|
-
) ->
|
|
16
|
+
function_invocation_value: dict[str, Any],
|
|
17
|
+
) -> dict[str, Any]:
|
|
18
18
|
return {
|
|
19
19
|
'result': '0',
|
|
20
20
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/kernel_test.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
5
|
import sys
|
|
6
|
-
from typing import Any
|
|
6
|
+
from typing import Any
|
|
7
7
|
import unittest
|
|
8
8
|
|
|
9
9
|
import unittest
|
|
@@ -30,8 +30,8 @@ _KERNEL_JSON = {
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def make_expression_graph(
|
|
33
|
-
function_invocation_value:
|
|
34
|
-
) ->
|
|
33
|
+
function_invocation_value: dict[str, Any],
|
|
34
|
+
) -> dict[str, Any]:
|
|
35
35
|
return {
|
|
36
36
|
'result': '0',
|
|
37
37
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/model_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Tests for the ee.Model module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
|
|
7
7
|
import unittest
|
|
8
8
|
import ee
|
|
@@ -12,15 +12,15 @@ MODEL = 'Model'
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def make_expression_graph(
|
|
15
|
-
function_invocation_value:
|
|
16
|
-
) ->
|
|
15
|
+
function_invocation_value: dict[str, Any],
|
|
16
|
+
) -> dict[str, Any]:
|
|
17
17
|
return {
|
|
18
18
|
'result': '0',
|
|
19
19
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
def make_override_expression(key: str, pixel_type: str) ->
|
|
23
|
+
def make_override_expression(key: str, pixel_type: str) -> dict[str, Any]:
|
|
24
24
|
return {
|
|
25
25
|
'dictionaryValue': {
|
|
26
26
|
'values': {
|
|
@@ -44,7 +44,7 @@ def make_override_expression(key: str, pixel_type: str) -> Dict[str, Any]:
|
|
|
44
44
|
|
|
45
45
|
def make_type_expression(
|
|
46
46
|
key: str, pixel_type: str, dimensions: int
|
|
47
|
-
) ->
|
|
47
|
+
) -> dict[str, Any]:
|
|
48
48
|
return {
|
|
49
49
|
'dictionaryValue': {
|
|
50
50
|
'values': {
|
ee/tests/pixeltype_test.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import enum
|
|
5
5
|
import json
|
|
6
|
-
from typing import Any
|
|
6
|
+
from typing import Any
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
9
9
|
import ee
|
|
@@ -25,15 +25,15 @@ PIXELTYPE = 'PixelType'
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
def make_expression_graph(
|
|
28
|
-
function_invocation_value:
|
|
29
|
-
) ->
|
|
28
|
+
function_invocation_value: dict[str, Any]
|
|
29
|
+
) -> dict[str, Any]:
|
|
30
30
|
return {
|
|
31
31
|
'result': '0',
|
|
32
32
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
def pixeltype_function_expr(value: Type) ->
|
|
36
|
+
def pixeltype_function_expr(value: Type) -> dict[str, Any]:
|
|
37
37
|
return {
|
|
38
38
|
'functionInvocationValue': {
|
|
39
39
|
'functionName': 'PixelType',
|
|
@@ -42,7 +42,7 @@ def pixeltype_function_expr(value: Type) -> Dict[str, Any]:
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
def pixeltype_noargs_expr(type_name: str) ->
|
|
45
|
+
def pixeltype_noargs_expr(type_name: str) -> dict[str, Any]:
|
|
46
46
|
return {
|
|
47
47
|
'result': '0',
|
|
48
48
|
'values': {
|
ee/tests/projection_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Tests for the ee.Projection module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
|
|
7
7
|
import unittest
|
|
8
8
|
import ee
|
|
@@ -24,8 +24,8 @@ PROJECTION_EPSG_4326 = {
|
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
def make_expression_graph(
|
|
27
|
-
function_invocation_value:
|
|
28
|
-
) ->
|
|
27
|
+
function_invocation_value: dict[str, Any],
|
|
28
|
+
) -> dict[str, Any]:
|
|
29
29
|
return {
|
|
30
30
|
'result': '0',
|
|
31
31
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/reducer_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Tests for ee.Reducer module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
|
|
7
7
|
import unittest
|
|
8
8
|
import ee
|
|
@@ -12,8 +12,8 @@ TO_LIST = 'Reducer.toList'
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def make_expression_graph(
|
|
15
|
-
function_invocation_value:
|
|
16
|
-
) ->
|
|
15
|
+
function_invocation_value: dict[str, Any],
|
|
16
|
+
) -> dict[str, Any]:
|
|
17
17
|
return {
|
|
18
18
|
'result': '0',
|
|
19
19
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
ee/tests/serializer_test.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import datetime
|
|
5
5
|
import json
|
|
6
|
-
from typing import Any, Callable,
|
|
6
|
+
from typing import Any, Callable, Union
|
|
7
7
|
|
|
8
8
|
import unittest
|
|
9
9
|
import ee
|
|
@@ -11,7 +11,7 @@ from ee import apitestcase
|
|
|
11
11
|
from ee import serializer
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
def _max_depth(x: Union[
|
|
14
|
+
def _max_depth(x: Union[dict[str, Any], list[Any], str]) -> int:
|
|
15
15
|
"""Computes the maximum nesting level of some dict, list, or str."""
|
|
16
16
|
if isinstance(x, dict):
|
|
17
17
|
return 1 + max(_max_depth(v) for v in x.values())
|
|
@@ -103,13 +103,13 @@ class SerializerTest(apitestcase.ApiTestCase):
|
|
|
103
103
|
self._value = value
|
|
104
104
|
|
|
105
105
|
# pylint: disable-next=g-bad-name
|
|
106
|
-
def encode(self, encoder: Callable[[Any], Any]) ->
|
|
106
|
+
def encode(self, encoder: Callable[[Any], Any]) -> dict[str, Any]:
|
|
107
107
|
del encoder # Unused.
|
|
108
108
|
return {'type': 'Bytes', 'value': self._value}
|
|
109
109
|
|
|
110
110
|
def encode_cloud_value(
|
|
111
111
|
self, encoder: Callable[[Any], Any]
|
|
112
|
-
) ->
|
|
112
|
+
) -> dict[str, str]:
|
|
113
113
|
del encoder # Unused.
|
|
114
114
|
# Proto3 JSON embedding of "bytes" values uses base64 encoding, which
|
|
115
115
|
# this already is.
|
ee/tests/table_converter_test.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
"""Tests for the table_converter module."""
|
|
3
3
|
|
|
4
|
-
from typing import Any,
|
|
4
|
+
from typing import Any, Optional, Type
|
|
5
5
|
|
|
6
6
|
from absl.testing import parameterized
|
|
7
7
|
import geopandas
|
|
@@ -15,8 +15,8 @@ from ee import table_converter
|
|
|
15
15
|
class TableConverterTest(parameterized.TestCase):
|
|
16
16
|
|
|
17
17
|
def _make_feature(
|
|
18
|
-
self, geometry:
|
|
19
|
-
) ->
|
|
18
|
+
self, geometry: dict[str, Any], properties: dict[str, Any]
|
|
19
|
+
) -> dict[str, Any]:
|
|
20
20
|
return {'type': 'Feature', 'geometry': geometry, 'properties': properties}
|
|
21
21
|
|
|
22
22
|
@parameterized.named_parameters(
|
ee/tests/terrain_test.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""Tests for the ee.Terrain module."""
|
|
3
3
|
|
|
4
4
|
import json
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
|
|
7
7
|
import unittest
|
|
8
8
|
import ee
|
|
@@ -19,8 +19,8 @@ IMAGE_EXPRESSION_1 = {
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
def make_expression_graph(
|
|
22
|
-
function_invocation_value:
|
|
23
|
-
) ->
|
|
22
|
+
function_invocation_value: dict[str, Any],
|
|
23
|
+
) -> dict[str, Any]:
|
|
24
24
|
return {
|
|
25
25
|
'result': '0',
|
|
26
26
|
'values': {'0': {'functionInvocationValue': function_invocation_value}},
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
earthengine_api-1.5.23.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
2
|
-
ee/__init__.py,sha256=knn5A8IcoXgAUfQl9LW4vYCyaln1Pc_h7cg3TLaovQU,16864
|
|
3
|
-
ee/_arg_types.py,sha256=iKWKK4KjkgIv6s4hZDCakHLdBxVp3jcoBsbaJYjtIe4,2674
|
|
4
|
-
ee/_cloud_api_utils.py,sha256=ABvZ6h80GHndnoDVM6Q0i8xsFe4z5gD6K1sGpU4T8TA,32485
|
|
5
|
-
ee/_helpers.py,sha256=roBMok5ZvoWmQx2Pd4F26uTFN1q-SNeoFiHo-aGuE0A,4684
|
|
6
|
-
ee/_utils.py,sha256=SAXQ_ZefZUaOtyV6Lp3pdYqEFqblMEA6Bvxz0ltLjzA,1329
|
|
7
|
-
ee/apifunction.py,sha256=RsMyVfOTpW6TKh7ZEIklc71mL8S6aPnbzcfE4CAQ2Zc,8803
|
|
8
|
-
ee/apitestcase.py,sha256=MC5bXd4RiS3dpfahPkFHxMvGxcSmlMzGcWdU4N6NmWk,14938
|
|
9
|
-
ee/batch.py,sha256=FKZ216W-UvTEFLs_CBXlb9BDVaejqz8G4_GsKRiFtu0,82684
|
|
10
|
-
ee/blob.py,sha256=CBxYaELE3o91MxnD0YpT9GFhncongZatSIl1XDUh1dc,3211
|
|
11
|
-
ee/classifier.py,sha256=bvXDGZN9_XyGeDPc72mU-Y5piw1uus5vRec0Kitm7NY,23610
|
|
12
|
-
ee/clusterer.py,sha256=ndim_Iu3BFuOOw46mry1XKSEx_4SmAcLYZvOYIdCaFM,12402
|
|
13
|
-
ee/collection.py,sha256=Zvnznv7SWdFTb0zYRiQHIhbFhD3SCOQJPPDqmVMT3HA,32433
|
|
14
|
-
ee/computedobject.py,sha256=bHbMSYnzeeJyPspCSGCbD6_OiJte5-tCbmTqWqkPgKw,9118
|
|
15
|
-
ee/confusionmatrix.py,sha256=PiNvwEitqBRzreZuasQKzsTQSV6rYb4yEmVPY8Sq5R4,4266
|
|
16
|
-
ee/customfunction.py,sha256=fc-c0FuhX2En6iCMparExnn2gl592MV5_09D8lXDIME,7403
|
|
17
|
-
ee/data.py,sha256=Jntk9lXyHUrhzxhfPmdh3ygaAE3Pgef4LpILoBqL96c,88678
|
|
18
|
-
ee/daterange.py,sha256=5HArg4214QKmEj6ZQR3ZTLwMtVW5DUCVGjdz1wbdeyc,5009
|
|
19
|
-
ee/deprecation.py,sha256=DCSrDE5kVxOJLiuZXKw1rSreRVFlVOt8HXRKN1VUQ4o,6068
|
|
20
|
-
ee/deserializer.py,sha256=sIQB-4jcZFmG40jMfxTFc1Eq9RaMxsH4WbYqhvaKSO0,8432
|
|
21
|
-
ee/dictionary.py,sha256=x_NR18NoCuGVEq0hM6jnjiJte2BzFIkD6iR3tRES--0,10554
|
|
22
|
-
ee/ee_array.py,sha256=eWGkxxn8rELf_xI9JKXFkx3Xp1YXDyD86sbRaFn1bNg,36375
|
|
23
|
-
ee/ee_date.py,sha256=C6tv5VyLB5O-0zon9GbwcyfQ2ika3puZRYe52ffCd2E,10839
|
|
24
|
-
ee/ee_exception.py,sha256=uN3X76HuhicU0LTxqRKQu1ZU6L7zw0GuABgsBTT-Ycw,164
|
|
25
|
-
ee/ee_list.py,sha256=Hlx70fjtp5LPIIk77XJLF6DGHZjoeXPyymYUIoK2KWM,19961
|
|
26
|
-
ee/ee_number.py,sha256=zb5LyiA4j24ml-B8ib4DTFne0Dzry2K4bSYhEdturtI,22615
|
|
27
|
-
ee/ee_string.py,sha256=gNMEJIWxRGiAa-FQrHYeAtEqdU9vJgXv4zyas3DHRZQ,7761
|
|
28
|
-
ee/ee_types.py,sha256=MWfXc0h3KgT8bLraI6qw-b0D3ogVkY5aDZKM3eoTsJA,3089
|
|
29
|
-
ee/element.py,sha256=awb1ufzfC9YwzonH0V3KKkTRbM-sFc2yPoSDjFsHjLE,6305
|
|
30
|
-
ee/encodable.py,sha256=ZzZBOVOEwc8a8Dby3oHwIhW-5za-4tvLDE0Q2oVaNwQ,1884
|
|
31
|
-
ee/errormargin.py,sha256=worYjc36VNP_M76NxlCFpXtq1HBfHThug1sOKUkaV8Q,3061
|
|
32
|
-
ee/feature.py,sha256=TwXn_uwvjBOremgoow-dbykFL59h6ortI1I7UDLdM-8,30543
|
|
33
|
-
ee/featurecollection.py,sha256=BZbhXhpSJD87RrilBVVJZb3pH-_w7ZuNd4tdSSPr620,14510
|
|
34
|
-
ee/filter.py,sha256=YFkir1W4QOBvoWM8OF_LdcEBDZu5YNGey4hgA0iILUw,35616
|
|
35
|
-
ee/function.py,sha256=YxQjqdjEI5n2rOzemPSqQ05NDqQC6Wq3srAwCIrDVtU,7068
|
|
36
|
-
ee/geometry.py,sha256=a4fnTtSR_SwyQxlOgWO3E4jSVJdbsmmWRRFRorAQzkA,59575
|
|
37
|
-
ee/image.py,sha256=8L__ZYiwQCkH47PC2hSRh2OCTva4Z7vPymk9AK7_Zs8,171643
|
|
38
|
-
ee/image_converter.py,sha256=EPx2kZF8pR3mSin4Yp3RFy3rSeQ05X4WIUqj5sxgRaM,1506
|
|
39
|
-
ee/imagecollection.py,sha256=agZKJ9c5VdjQh3IDOGjjk1IVU032Q4RSvACuOy3pKHE,27135
|
|
40
|
-
ee/join.py,sha256=bzdGeNSIOYZf9MD5gekDRpQ9oAOuKsSftrPM3e7xssQ,7646
|
|
41
|
-
ee/kernel.py,sha256=xppt5uEQnP1BQl0XxJ8XT-pwbFl_MdggZWfBSQRGA9I,15196
|
|
42
|
-
ee/mapclient.py,sha256=QpUpKreEgOkjSXQBnfyViCwLQGiumHbKr-EA076XLYk,17500
|
|
43
|
-
ee/model.py,sha256=nXn0qhwKgiTA6xOUQ7aFe0o6Mis68hiywLoY9twLOj0,12185
|
|
44
|
-
ee/oauth.py,sha256=nwE92VvCr8C_U5UN0iR41iXROWe-0TduX_aSngXXnuo,21906
|
|
45
|
-
ee/pixeltype.py,sha256=Q1bsWN9LJGlOrYWOvq8o4-drSKaNFEap4LsP6A99jNw,5235
|
|
46
|
-
ee/projection.py,sha256=7zPeJI9Edq5ZJzggUY3whjcq50rTPeeYCOPxjQXWDN0,5863
|
|
47
|
-
ee/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
-
ee/reducer.py,sha256=lO4zuuZ5bSrK_wvmm6hBcAcZ33ebhvmHeYCyFLStmro,33886
|
|
49
|
-
ee/serializer.py,sha256=FbvXAalaevhxudlQOycL8Fhf8izqQSNHNfRdT0UcZfY,22834
|
|
50
|
-
ee/table_converter.py,sha256=ELBWLMkVT-HJHdc0ISxsK7ba7spOAb2Qw-PgIXLhRJ0,2079
|
|
51
|
-
ee/terrain.py,sha256=eDXtUVJkdQqvsjQmygCgHTLJKPB0FLi7H849NegDyp8,4910
|
|
52
|
-
ee/cli/__init__.py,sha256=YjzBDuYi6fiOv77Xfl-Qib2O6gRZj9z7Sx2Zz6teTXU,33
|
|
53
|
-
ee/cli/commands.py,sha256=CQPdG2uTllqzKJDHalRvacWC8BNEqRDfeUqrovL-AkU,71444
|
|
54
|
-
ee/cli/eecli.py,sha256=iws34w24UJI6H7Wl9WsEUwy-uN57Pw-bgHtr2f92olY,3044
|
|
55
|
-
ee/cli/eecli_wrapper.py,sha256=Z7R3IJcht2uG1h57oY7BSrkPiwQzNmmYlyCSX1_7L7c,1089
|
|
56
|
-
ee/cli/utils.py,sha256=LUkogw-jOwks7s-rcriWIGKI3hQYOhQ6uuJYl_uHB4E,13864
|
|
57
|
-
ee/tests/_cloud_api_utils_test.py,sha256=SANsImcCZDnEcbV0nBFwT5QYM76XtAuppFns5SurM-o,18816
|
|
58
|
-
ee/tests/_helpers_test.py,sha256=exOYxGKSiXHKQF3Tn189LVfP7wcAXbmAy3BkS0690yY,1941
|
|
59
|
-
ee/tests/_utils_test.py,sha256=bOarVj3U-VFo9Prog8WQN_hAOMwJOiWKJxevUbdFPBQ,2753
|
|
60
|
-
ee/tests/algorithms.json,sha256=Vx1Kx_MhHv0z0B3WTeVAvchM8xVd3zYE7L-qT3gDGzA,729368
|
|
61
|
-
ee/tests/apifunction_test.py,sha256=62El-6jcgQmD7qt9eEDdM7IeIQmpV8M5xQ439g-zfN4,3767
|
|
62
|
-
ee/tests/batch_test.py,sha256=UdNmismzpVhH_h_iTNvfHIru9Sa8RyoN2WVSmwScZF4,62212
|
|
63
|
-
ee/tests/blob_test.py,sha256=JqKRhREvZ-ZdTMjH9SdvdKieKg2FTj76hpSYMV3xZqI,3581
|
|
64
|
-
ee/tests/classifier_test.py,sha256=3zc9FZwgkRerVWNl9pI89PBBTOwYjEwR3RYb5-BowBI,19093
|
|
65
|
-
ee/tests/cloud_api_discovery_document.json,sha256=SnOeL8One57YdeHa7XxGZM-ptDPCeDSymBc7-Bo_hkA,41154
|
|
66
|
-
ee/tests/clusterer_test.py,sha256=ZBha-kLPJz4HGofw7Zm-_d0MACBiYd-6Zi_1Brg1eHc,11626
|
|
67
|
-
ee/tests/collection_test.py,sha256=dnZwFADWQ8oShJHRTcYSzuP-waAxetTdM_CtVckWbMM,7563
|
|
68
|
-
ee/tests/computedobject_test.py,sha256=B27rDq9Urpvy0WqpdbKRYbt6AcT1i93HX-es7hrhWVY,4840
|
|
69
|
-
ee/tests/confusionmatrix_test.py,sha256=L7-yXE1XkWmw-n890Vra9WrjgoxP3R1qwtq2mDtcFEI,7443
|
|
70
|
-
ee/tests/data_test.py,sha256=HNHI2RDL9oFzA_-dG48zYtpc10I9HeCdFa5vtyndInY,35299
|
|
71
|
-
ee/tests/daterange_test.py,sha256=CFVCIrfGz7ZqZCjAbyrP-j3tsd4auDdS-Pu8xvqEc5A,8589
|
|
72
|
-
ee/tests/deprecation_test.py,sha256=P3_Rn8-7QqfQ9ztvxrTlqF9-oL3Y-brCmxgMVbc75Qc,8358
|
|
73
|
-
ee/tests/deserializer_test.py,sha256=-tbrL0cjrXdSLF7M3wl-QQuj6TjXJdkjp7RZvVErUy4,3427
|
|
74
|
-
ee/tests/dictionary_test.py,sha256=k8iVRCtWZ6_uvGZy7L40z3ZG0AJnhlwqowf1TCKQKoQ,11815
|
|
75
|
-
ee/tests/ee_array_test.py,sha256=9AFv0_d12fWmG84bMNVyLBPne3cc0KVO4KvnzEdTkpI,50274
|
|
76
|
-
ee/tests/ee_date_test.py,sha256=csMDTfBf-F_vkpnP6C8wvvfKBgoHFyUqn1rFZ2kAORQ,11112
|
|
77
|
-
ee/tests/ee_list_test.py,sha256=tcSDxJbOGNbtjXiHWHyC4Ty_w865kqhP4U9nWNQax98,21803
|
|
78
|
-
ee/tests/ee_number_test.py,sha256=JQlWUXWNpfTnmcyhX_M-Zvr72nIXvdBsPvl4HXetrPE,33448
|
|
79
|
-
ee/tests/ee_string_test.py,sha256=853sbXV7FG2xXo3J8cSuTyMu_ZVo6gvq-dZkaplEr00,9395
|
|
80
|
-
ee/tests/ee_test.py,sha256=t_YzfCBkKkqf4MM9yT8pN2Rb2S3FNp_3-CvkKe-uEHc,17064
|
|
81
|
-
ee/tests/ee_types_test.py,sha256=oRnqplaTWg47zuYfAYTTVwembCnw8XT20HPNMdAvgNE,921
|
|
82
|
-
ee/tests/element_test.py,sha256=Kqu_Z65FQcYHX4LebKm3LD0mWkRTRZccs-qAGz3bLsE,1964
|
|
83
|
-
ee/tests/errormargin_test.py,sha256=UVi3YcpUvo4nQCJJ3hE5a28bBTWeDt1gYvkZ2tkTNco,5066
|
|
84
|
-
ee/tests/feature_test.py,sha256=lWVA4DuFMhQrnEww5ttiCuniUVR9g6tks4S3OgcJ1vI,22511
|
|
85
|
-
ee/tests/featurecollection_test.py,sha256=XuW3WswrNgMxCzMuhjFNPgTvirJ4oyIFRuQkjlLYVZU,38446
|
|
86
|
-
ee/tests/filter_test.py,sha256=wRidsH38DnYeHnFt48XOEwfxVlu0JiVbHx5_cutyhNs,35039
|
|
87
|
-
ee/tests/function_test.py,sha256=NbluwBCuWUZSzbMLAa04OP_qd95ibMjJWWNuM2P3Izo,3121
|
|
88
|
-
ee/tests/geometry_point_test.py,sha256=oPB0NLmGINt5IEIMfJmgUgItEMef8LHupbm_I8xfODM,15099
|
|
89
|
-
ee/tests/geometry_test.py,sha256=z010i7CgwX8taJGk0NaMh6ArUDTIZllFgyZrMSpNFlI,30732
|
|
90
|
-
ee/tests/image_converter_test.py,sha256=kBFq3Ij2mNuAAMoUDqyT0IH2XzHtn9MCiijzyQxGifU,1891
|
|
91
|
-
ee/tests/image_test.py,sha256=wRMJ0hVH8o9PS3SvJXu22W8zmYXgpRRySpoLEOp8tu0,150923
|
|
92
|
-
ee/tests/imagecollection_test.py,sha256=wzN-N91bavK5qdkrlBOaMfSKYaeUwoKzvCWGHxm7NL8,38450
|
|
93
|
-
ee/tests/join_test.py,sha256=ikS4ztMkwYrWTQzebRl0JavxW4fuAshyKLx33knt91g,7636
|
|
94
|
-
ee/tests/kernel_test.py,sha256=YsqElybuI7X_N421zvkuMGWh1yZQ6g_K4hDTVYiHgew,19255
|
|
95
|
-
ee/tests/model_test.py,sha256=FQQhAQNwO9qS6CrwRbMSvrUb54ENWvqsXGC8LCMXDo0,12059
|
|
96
|
-
ee/tests/oauth_test.py,sha256=hAGvot2xj1MFW6IdD1QAmSNIiuu4z4gCs3beRhp3U_k,2277
|
|
97
|
-
ee/tests/pixeltype_test.py,sha256=l-Oamx8I7UNsuvaT10dXctw3SjwxR_tUB1Cqi84jb0c,10075
|
|
98
|
-
ee/tests/projection_test.py,sha256=Pb6iK-vXE690_vQeKJxzaCcCmy3V2AQvfo6w6alCVS4,6905
|
|
99
|
-
ee/tests/reducer_test.py,sha256=wzwESob1ZPtC2IfkmDYFkL631Ph9VtmCl2UhQQOzZBc,31524
|
|
100
|
-
ee/tests/serializer_test.py,sha256=5aApenGb9_tOTM4J8zFcT0JFzAOO_Av6dYGFz93COP8,8814
|
|
101
|
-
ee/tests/table_converter_test.py,sha256=HSZpEvDG-H1RATnQXcZNR8O3kEJdJ3rHc-46KTiOWpY,3385
|
|
102
|
-
ee/tests/terrain_test.py,sha256=kV901v89SBKzgSNqG6k3wxh3IdDfQeNdxmD5f9ouV18,4334
|
|
103
|
-
earthengine_api-1.5.23.dist-info/METADATA,sha256=IzM1ECjaiAaSe8A5MQ21s1vScu1cZTuf8YmiVlqMnV8,2143
|
|
104
|
-
earthengine_api-1.5.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
105
|
-
earthengine_api-1.5.23.dist-info/entry_points.txt,sha256=-Ax4SCU-S474r8OD2LIxata6PRmkZoDrppQ4fP_exNc,50
|
|
106
|
-
earthengine_api-1.5.23.dist-info/top_level.txt,sha256=go5zOwCgm5lIS3yTR-Vsxp1gNI4qdS-MP5eY-7zMxVY,3
|
|
107
|
-
earthengine_api-1.5.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|