geobox 1.4.2__py3-none-any.whl → 2.0.1__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.
- geobox/__init__.py +2 -2
- geobox/aio/__init__.py +63 -0
- geobox/aio/api.py +2640 -0
- geobox/aio/apikey.py +263 -0
- geobox/aio/attachment.py +339 -0
- geobox/aio/base.py +262 -0
- geobox/aio/basemap.py +196 -0
- geobox/aio/dashboard.py +342 -0
- geobox/aio/feature.py +527 -0
- geobox/aio/field.py +321 -0
- geobox/aio/file.py +522 -0
- geobox/aio/layout.py +341 -0
- geobox/aio/log.py +145 -0
- geobox/aio/map.py +1034 -0
- geobox/aio/model3d.py +415 -0
- geobox/aio/mosaic.py +696 -0
- geobox/aio/plan.py +315 -0
- geobox/aio/query.py +693 -0
- geobox/aio/raster.py +869 -0
- geobox/aio/route.py +63 -0
- geobox/aio/scene.py +342 -0
- geobox/aio/settings.py +194 -0
- geobox/aio/task.py +402 -0
- geobox/aio/tile3d.py +339 -0
- geobox/aio/tileset.py +672 -0
- geobox/aio/usage.py +243 -0
- geobox/aio/user.py +507 -0
- geobox/aio/vectorlayer.py +1363 -0
- geobox/aio/version.py +273 -0
- geobox/aio/view.py +983 -0
- geobox/aio/workflow.py +341 -0
- geobox/api.py +14 -15
- geobox/apikey.py +28 -1
- geobox/attachment.py +27 -1
- geobox/base.py +4 -4
- geobox/basemap.py +30 -1
- geobox/dashboard.py +27 -0
- geobox/feature.py +33 -13
- geobox/field.py +33 -21
- geobox/file.py +40 -46
- geobox/layout.py +28 -1
- geobox/log.py +31 -7
- geobox/map.py +34 -2
- geobox/model3d.py +31 -37
- geobox/mosaic.py +28 -7
- geobox/plan.py +29 -3
- geobox/query.py +39 -14
- geobox/raster.py +26 -13
- geobox/scene.py +26 -0
- geobox/settings.py +30 -1
- geobox/task.py +28 -6
- geobox/tile3d.py +27 -1
- geobox/tileset.py +26 -5
- geobox/usage.py +32 -1
- geobox/user.py +62 -6
- geobox/utils.py +34 -0
- geobox/vectorlayer.py +40 -4
- geobox/version.py +25 -1
- geobox/view.py +37 -17
- geobox/workflow.py +27 -1
- {geobox-1.4.2.dist-info → geobox-2.0.1.dist-info}/METADATA +4 -1
- geobox-2.0.1.dist-info/RECORD +68 -0
- geobox-1.4.2.dist-info/RECORD +0 -38
- {geobox-1.4.2.dist-info → geobox-2.0.1.dist-info}/WHEEL +0 -0
- {geobox-1.4.2.dist-info → geobox-2.0.1.dist-info}/licenses/LICENSE +0 -0
- {geobox-1.4.2.dist-info → geobox-2.0.1.dist-info}/top_level.txt +0 -0
geobox/vectorlayer.py
CHANGED
|
@@ -17,6 +17,8 @@ if TYPE_CHECKING:
|
|
|
17
17
|
from .user import User
|
|
18
18
|
from .file import File
|
|
19
19
|
from .attachment import Attachment
|
|
20
|
+
from .aio import AsyncGeoboxClient
|
|
21
|
+
from .aio.vectorlayer import VectorLayer as AsyncVectorLayer
|
|
20
22
|
|
|
21
23
|
|
|
22
24
|
class VectorLayer(Base):
|
|
@@ -337,6 +339,16 @@ class VectorLayer(Base):
|
|
|
337
339
|
def make_permanent(self) -> None:
|
|
338
340
|
"""
|
|
339
341
|
Make the layer permanent.
|
|
342
|
+
|
|
343
|
+
Returns:
|
|
344
|
+
None
|
|
345
|
+
|
|
346
|
+
Example:
|
|
347
|
+
>>> from geobox import GeoboxClient
|
|
348
|
+
>>> from geobox.vectorlayer import VectorLayer
|
|
349
|
+
>>> client = GeoboxClient()
|
|
350
|
+
>>> layer = VectorLayer.get_vector(api=client, uuid="12345678-1234-5678-1234-567812345678")
|
|
351
|
+
>>> layer.make_permanent()
|
|
340
352
|
"""
|
|
341
353
|
endpoint = urljoin(self.endpoint, 'makePermanent/')
|
|
342
354
|
response = self.api.post(endpoint, is_json=False)
|
|
@@ -543,7 +555,7 @@ class VectorLayer(Base):
|
|
|
543
555
|
Get a specific field by its name.
|
|
544
556
|
|
|
545
557
|
Args:
|
|
546
|
-
name (str
|
|
558
|
+
name (str): The name of the field to retrieve.
|
|
547
559
|
|
|
548
560
|
Returns:
|
|
549
561
|
Field: The requested field instance.
|
|
@@ -1003,7 +1015,7 @@ class VectorLayer(Base):
|
|
|
1003
1015
|
|
|
1004
1016
|
def get_tile_pbf_url(self, x: int = '{x}', y: int = '{y}', z: int = '{z}') -> str:
|
|
1005
1017
|
"""
|
|
1006
|
-
Get a vector tile for the layer.
|
|
1018
|
+
Get a vector tile pbf url for the layer.
|
|
1007
1019
|
|
|
1008
1020
|
Args:
|
|
1009
1021
|
x (int, optional): X coordinate of the tile.
|
|
@@ -1311,7 +1323,7 @@ class VectorLayer(Base):
|
|
|
1311
1323
|
>>> from geobox.vectorlayer import VectorLayer
|
|
1312
1324
|
>>> client = GeoboxClient()
|
|
1313
1325
|
>>> layer = VectorLayer.get_vector(api=client, uuid="12345678-1234-5678-1234-567812345678")
|
|
1314
|
-
>>> file = client.
|
|
1326
|
+
>>> file = client.get_file(uuid="12345678-1234-5678-1234-567812345678")
|
|
1315
1327
|
>>> layer.create_attachment(name='test', loc_x=10, loc_y=10, file=file)
|
|
1316
1328
|
"""
|
|
1317
1329
|
from .attachment import Attachment
|
|
@@ -1324,4 +1336,28 @@ class VectorLayer(Base):
|
|
|
1324
1336
|
file=file,
|
|
1325
1337
|
feature=feature,
|
|
1326
1338
|
display_name=display_name,
|
|
1327
|
-
description=description)
|
|
1339
|
+
description=description)
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
def to_async(self, async_client: 'AsyncGeoboxClient') -> 'AsyncVectorLayer':
|
|
1343
|
+
"""
|
|
1344
|
+
Switch to async version of the vector layer instance to have access to the async methods
|
|
1345
|
+
|
|
1346
|
+
Args:
|
|
1347
|
+
async_client (AsyncGeoboxClient): The async version of the GeoboxClient instance for making requests.
|
|
1348
|
+
|
|
1349
|
+
Returns:
|
|
1350
|
+
geobox.aio.vectorlayer.VectorLayer: the async instance of the vector layer.
|
|
1351
|
+
|
|
1352
|
+
Example:
|
|
1353
|
+
>>> from geobox import Geoboxclient
|
|
1354
|
+
>>> from geobox.aio import AsyncGeoboxClient
|
|
1355
|
+
>>> from geobox.vectorlayer import VectorLayer
|
|
1356
|
+
>>> client = GeoboxClient()
|
|
1357
|
+
>>> layer = VectorLayer.get_vector(client, uuid="12345678-1234-5678-1234-567812345678")
|
|
1358
|
+
>>> async with AsyncGeoboxClient() as async_client:
|
|
1359
|
+
>>> async_layer = layer.to_async(async_client)
|
|
1360
|
+
"""
|
|
1361
|
+
from .aio.vectorlayer import VectorLayer as AsyncVectorLayer
|
|
1362
|
+
|
|
1363
|
+
return AsyncVectorLayer(api=async_client, uuid=self.uuid, layer_type=self.layer_type, data=self.data)
|
geobox/version.py
CHANGED
|
@@ -5,6 +5,8 @@ from .base import Base
|
|
|
5
5
|
if TYPE_CHECKING:
|
|
6
6
|
from .api import GeoboxClient
|
|
7
7
|
from .user import User
|
|
8
|
+
from .aio import AsyncGeoboxClient
|
|
9
|
+
from .aio.version import VectorLayerVersion as AsyncVectorLayerVersion
|
|
8
10
|
|
|
9
11
|
class VectorLayerVersion(Base):
|
|
10
12
|
|
|
@@ -246,4 +248,26 @@ class VectorLayerVersion(Base):
|
|
|
246
248
|
}
|
|
247
249
|
return super()._get_shared_users(self.endpoint, params)
|
|
248
250
|
|
|
249
|
-
|
|
251
|
+
|
|
252
|
+
def to_async(self, async_client: 'AsyncGeoboxClient') -> 'AsyncVectorLayerVersion':
|
|
253
|
+
"""
|
|
254
|
+
Switch to async version of the version instance to have access to the async methods
|
|
255
|
+
|
|
256
|
+
Args:
|
|
257
|
+
async_client (AsyncGeoboxClient): The async version of the GeoboxClient instance for making requests.
|
|
258
|
+
|
|
259
|
+
Returns:
|
|
260
|
+
geobox.aio.version.VectorLayerVersion: the async instance of the version.
|
|
261
|
+
|
|
262
|
+
Example:
|
|
263
|
+
>>> from geobox import Geoboxclient
|
|
264
|
+
>>> from geobox.aio import AsyncGeoboxClient
|
|
265
|
+
>>> from geobox.version import VectorLayerversion
|
|
266
|
+
>>> client = GeoboxClient()
|
|
267
|
+
>>> version = VectorLayerversion.get_version(client, uuid="12345678-1234-5678-1234-567812345678")
|
|
268
|
+
>>> async with AsyncGeoboxClient() as async_client:
|
|
269
|
+
>>> async_version = version.to_async(async_client)
|
|
270
|
+
"""
|
|
271
|
+
from .aio.version import VectorLayerVersion as AsyncVectorLayerVersion
|
|
272
|
+
|
|
273
|
+
return AsyncVectorLayerVersion(api=async_client, uuid=self.uuid, data=self.data)
|
geobox/view.py
CHANGED
|
@@ -11,17 +11,12 @@ if TYPE_CHECKING:
|
|
|
11
11
|
from .task import Task
|
|
12
12
|
from .file import File
|
|
13
13
|
from .attachment import Attachment
|
|
14
|
-
|
|
14
|
+
from .aio import AsyncGeoboxClient
|
|
15
|
+
from .aio.view import VectorLayerView as AsyncVectorLayerView
|
|
15
16
|
|
|
16
17
|
|
|
17
18
|
class VectorLayerView(VectorLayer):
|
|
18
|
-
"""
|
|
19
|
-
A class representing a vector layer view in Geobox.
|
|
20
19
|
|
|
21
|
-
This class provides functionality to create, manage, and manipulate vector layer views.
|
|
22
|
-
It supports various operations including CRUD operations on views, as well as advanced operations like getting fields, features, and sharing views.
|
|
23
|
-
It also provides properties to access the view data, and a method to update the view.
|
|
24
|
-
"""
|
|
25
20
|
BASE_ENDPOINT = 'vectorLayerViews/'
|
|
26
21
|
|
|
27
22
|
def __init__(self,
|
|
@@ -78,15 +73,15 @@ class VectorLayerView(VectorLayer):
|
|
|
78
73
|
api (GeoboxClient): The GeoboxClient instance for making requests.
|
|
79
74
|
|
|
80
75
|
Keyword Args:
|
|
81
|
-
layer_id(int): The id of the layer.
|
|
76
|
+
layer_id(int): The id of the source vector layer.
|
|
82
77
|
include_settings(bool): Whether to include the settings of the layer. default is False.
|
|
83
78
|
q(str): query filter based on OGC CQL standard. e.g. "field1 LIKE '%GIS%' AND created_at > '2021-01-01'"
|
|
84
79
|
search(str): search term for keyword-based searching among search_fields or all textual fields if search_fields does not have value. NOTE: if q param is defined this param will be ignored.
|
|
85
80
|
search_fields(str): Comma separated list of fields for searching.
|
|
86
81
|
order_by(str): comma separated list of fields for sorting results [field1 A|D, field2 A|D, …]. e.g. name A, type D. NOTE: "A" denotes ascending order and "D" denotes descending order.
|
|
87
82
|
return_count(bool): Whether to return the count of the layer views. default is False.
|
|
88
|
-
skip(int): The number of
|
|
89
|
-
limit(int): The maximum number of
|
|
83
|
+
skip(int): The number of views to skip. minimum is 0.
|
|
84
|
+
limit(int): The maximum number of views to return. minimum is 1. default is 10.
|
|
90
85
|
user_id(int): Specific user. privileges required.
|
|
91
86
|
shared(bool): Whether to return shared views. default is False.
|
|
92
87
|
|
|
@@ -251,9 +246,9 @@ class VectorLayerView(VectorLayer):
|
|
|
251
246
|
>>> from geobox.view import VectorLayerView
|
|
252
247
|
>>> client = GeoboxClient()
|
|
253
248
|
>>> view = VectorLayerView.get_view(client, uuid="12345678-1234-5678-1234-567812345678")
|
|
254
|
-
>>> view.
|
|
255
|
-
>>> view.
|
|
256
|
-
>>> view.
|
|
249
|
+
>>> view.update(name="new_name")
|
|
250
|
+
>>> view.update(display_name="new_display_name")
|
|
251
|
+
>>> view.update(description="new_description")
|
|
257
252
|
"""
|
|
258
253
|
return super().update(name=kwargs.get('name'), display_name=kwargs.get('display_name'), description=kwargs.get('description'))
|
|
259
254
|
|
|
@@ -508,7 +503,8 @@ class VectorLayerView(VectorLayer):
|
|
|
508
503
|
NotFoundError: If the feature with the specified ID is not found.
|
|
509
504
|
|
|
510
505
|
Example:
|
|
511
|
-
>>> from geobox import GeoboxClient
|
|
506
|
+
>>> from geobox import GeoboxClient
|
|
507
|
+
>>> from geobox.view import VectorLayerView
|
|
512
508
|
>>> client = GeoboxClient()
|
|
513
509
|
>>> view = VectorLayerView.get_view(client, uuid="12345678-1234-5678-1234-567812345678")
|
|
514
510
|
>>> feature = view.get_feature(id=1)
|
|
@@ -665,9 +661,9 @@ class VectorLayerView(VectorLayer):
|
|
|
665
661
|
bbox, out_srid, zipped, feature_ids, bbox_srid, q, fields)
|
|
666
662
|
|
|
667
663
|
|
|
668
|
-
def get_tile_pbf_url(self, x: int, y: int, z: int) -> str:
|
|
664
|
+
def get_tile_pbf_url(self, x: int = '{x}', y: int = '{y}', z: int = '{z}') -> str:
|
|
669
665
|
"""
|
|
670
|
-
Get a vector tile for the
|
|
666
|
+
Get a vector tile pbf url for the view.
|
|
671
667
|
|
|
672
668
|
Args:
|
|
673
669
|
x (int): X coordinate of the tile.
|
|
@@ -959,4 +955,28 @@ class VectorLayerView(VectorLayer):
|
|
|
959
955
|
file=file,
|
|
960
956
|
feature=feature,
|
|
961
957
|
display_name=display_name,
|
|
962
|
-
description=description)
|
|
958
|
+
description=description)
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
def to_async(self, async_client: 'AsyncGeoboxClient') -> 'AsyncVectorLayerView':
|
|
962
|
+
"""
|
|
963
|
+
Switch to async version of the view instance to have access to the async methods
|
|
964
|
+
|
|
965
|
+
Args:
|
|
966
|
+
async_client (AsyncGeoboxClient): The async version of the GeoboxClient instance for making requests.
|
|
967
|
+
|
|
968
|
+
Returns:
|
|
969
|
+
geobox.aio.view.VectorLayerView: the async instance of the view.
|
|
970
|
+
|
|
971
|
+
Example:
|
|
972
|
+
>>> from geobox import Geoboxclient
|
|
973
|
+
>>> from geobox.aio import AsyncGeoboxClient
|
|
974
|
+
>>> from geobox.view import VectorLayerView
|
|
975
|
+
>>> client = GeoboxClient()
|
|
976
|
+
>>> view = VectorLayerView.get_view(client, uuid="12345678-1234-5678-1234-567812345678")
|
|
977
|
+
>>> async with AsyncGeoboxClient() as async_client:
|
|
978
|
+
>>> async_view = view.to_async(async_client)
|
|
979
|
+
"""
|
|
980
|
+
from .aio.view import VectorLayerView as AsyncVectorLayerView
|
|
981
|
+
|
|
982
|
+
return AsyncVectorLayerView(api=async_client, uuid=self.uuid, layer_type=self.layer_type, data=self.data)
|
geobox/workflow.py
CHANGED
|
@@ -5,6 +5,8 @@ from .base import Base
|
|
|
5
5
|
if TYPE_CHECKING:
|
|
6
6
|
from . import GeoboxClient
|
|
7
7
|
from .user import User
|
|
8
|
+
from .aio import AsyncGeoboxClient
|
|
9
|
+
from .aio.workflow import Workflow as AsyncWorkflow
|
|
8
10
|
|
|
9
11
|
class Workflow(Base):
|
|
10
12
|
|
|
@@ -20,7 +22,7 @@ class Workflow(Base):
|
|
|
20
22
|
Args:
|
|
21
23
|
api (GeoboxClient): The GeoboxClient instance for making requests.
|
|
22
24
|
uuid (str): The unique identifier for the workflow.
|
|
23
|
-
data (Dict): The data of the workflow.
|
|
25
|
+
data (Dict): The response data of the workflow.
|
|
24
26
|
"""
|
|
25
27
|
super().__init__(api, uuid=uuid, data=data)
|
|
26
28
|
|
|
@@ -312,3 +314,27 @@ class Workflow(Base):
|
|
|
312
314
|
'limit': limit
|
|
313
315
|
}
|
|
314
316
|
return super()._get_shared_users(self.endpoint, params)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
def to_async(self, async_client: 'AsyncGeoboxClient') -> 'AsyncWorkflow':
|
|
320
|
+
"""
|
|
321
|
+
Switch to async version of the workflow instance to have access to the async methods
|
|
322
|
+
|
|
323
|
+
Args:
|
|
324
|
+
async_client (AsyncGeoboxClient): The async version of the GeoboxClient instance for making requests.
|
|
325
|
+
|
|
326
|
+
Returns:
|
|
327
|
+
geobox.aio.workflow.Workflow: the async instance of the workflow.
|
|
328
|
+
|
|
329
|
+
Example:
|
|
330
|
+
>>> from geobox import Geoboxclient
|
|
331
|
+
>>> from geobox.aio import AsyncGeoboxClient
|
|
332
|
+
>>> from geobox.workflow import Workflow
|
|
333
|
+
>>> client = GeoboxClient()
|
|
334
|
+
>>> workflow = Workflow.get_workflow(client, uuid="12345678-1234-5678-1234-567812345678")
|
|
335
|
+
>>> async with AsyncGeoboxClient() as async_client:
|
|
336
|
+
>>> async_workflow = workflow.to_async(async_client)
|
|
337
|
+
"""
|
|
338
|
+
from .aio.workflow import Workflow as AsyncWorkflow
|
|
339
|
+
|
|
340
|
+
return AsyncWorkflow(api=async_client, uuid=self.uuid, data=self.data)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geobox
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: SDK for Geobox's APIs
|
|
5
5
|
Author-email: Hamid Heydari <heydari.h62@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -17,11 +17,14 @@ Requires-Dist: pyproj; extra == "geometry"
|
|
|
17
17
|
Provides-Extra: tqdm
|
|
18
18
|
Requires-Dist: tqdm; extra == "tqdm"
|
|
19
19
|
Requires-Dist: ipywidgets; extra == "tqdm"
|
|
20
|
+
Provides-Extra: async
|
|
21
|
+
Requires-Dist: aiohttp; extra == "async"
|
|
20
22
|
Provides-Extra: all
|
|
21
23
|
Requires-Dist: shapely; extra == "all"
|
|
22
24
|
Requires-Dist: pyproj; extra == "all"
|
|
23
25
|
Requires-Dist: tqdm; extra == "all"
|
|
24
26
|
Requires-Dist: ipywidgets; extra == "all"
|
|
27
|
+
Requires-Dist: aiohttp; extra == "all"
|
|
25
28
|
Dynamic: license-file
|
|
26
29
|
|
|
27
30
|
[<img width="200" alt="Geobox logo" src="https://www.geobox.ir/wp-content/uploads/2022/05/geologo-slider.png">](https://www.geobox.ir/)
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
geobox/__init__.py,sha256=ne0OfIpHDw_RiSuNmk1APBL66jAYXXPn_FAKHzkBrRM,1895
|
|
2
|
+
geobox/api.py,sha256=MN5aJ6xqxRiDpHjAeiOyWvyph2rlxJW_1LcFoFQGpiM,105262
|
|
3
|
+
geobox/apikey.py,sha256=p1kmnpjIa41vVKrz2nApWFQltorv68MNawtIWz5Ja0k,8562
|
|
4
|
+
geobox/attachment.py,sha256=kbTmEayMf66f7gIS8uhD36SdnQrl1Nq_DRXjBdCeXDI,13026
|
|
5
|
+
geobox/base.py,sha256=-7Qsxw7OzgtFygKqaDVB__HxmUqA521XGxj9ibtTmO8,12967
|
|
6
|
+
geobox/basemap.py,sha256=998m2lpgESIGsJuADWFnqg5eShskCtlp6Qcri4IM6Hg,5587
|
|
7
|
+
geobox/dashboard.py,sha256=iBK1ZFl3pM95q0lFAeRDnuk2vhhfm9-zBV0YOTKXAu0,12821
|
|
8
|
+
geobox/enums.py,sha256=Ur8zbUjfx09oxXb-uzwFfDT_Nt8I4AP5pFQKJ9bxVxI,6204
|
|
9
|
+
geobox/exception.py,sha256=jvpnv0M2Ck1FpxHTL_aKYWxGvLnCQ3d9vOrMIktjw1U,1507
|
|
10
|
+
geobox/feature.py,sha256=PphGJLSya2FR-JSaC7lE0YE-nf2A2wHPTCG3Rj6iz9Y,19239
|
|
11
|
+
geobox/field.py,sha256=ZNbuf3ayemyguVee10yCKH4aq62xUEmY--qQLTeRz4Q,10897
|
|
12
|
+
geobox/file.py,sha256=RkRlHORGa1ybWFrK-QFavEPiRrcU5OBhNwfcc_gpfzE,20217
|
|
13
|
+
geobox/layout.py,sha256=a0lkrl2ondvgOM-BwRuMgEmzo-C7frFJzC7MuX2MNl8,12348
|
|
14
|
+
geobox/log.py,sha256=-BHQdXooUKD-ETslxHuv9SGhlk8yzzRizSSiK404Y0I,5007
|
|
15
|
+
geobox/map.py,sha256=CGorSxO5vuiOtmwUs3Mk4PeOg-HF5py3sRo6ahx9GF8,38074
|
|
16
|
+
geobox/model3d.py,sha256=e_d_E7yj-Ria3oJm9V14vfXV-g1iMHa7u7sl9Or4FlA,14938
|
|
17
|
+
geobox/mosaic.py,sha256=Ceh_kleRlZqBSDTTV27iwahG-TGsdpVzUyXcB3dbJIo,25128
|
|
18
|
+
geobox/plan.py,sha256=f7ciVE_VKM7onuzE3bGK63XxxrtfUsMv16oImyDgZ3c,13061
|
|
19
|
+
geobox/query.py,sha256=ndppWvwpWdCE5tzU2rVtr6gglbDLvnPkWhvj-UMxhOY,25334
|
|
20
|
+
geobox/raster.py,sha256=YSO-Qc73PWu2jIZdoF2xfqgVlBKGgAiYUhswjbgBfrY,31098
|
|
21
|
+
geobox/route.py,sha256=cKZTTHBHM8woWbhHIpCvrRX_doJcTkGktouee0z7oG0,2723
|
|
22
|
+
geobox/scene.py,sha256=iUkMxH4YqPk3vCIQq1uAZgQGWUvtujKBylUWcmUpQkM,12356
|
|
23
|
+
geobox/settings.py,sha256=ue6vZYYIirisYBwnuTsZnV7fG0jOQampX1xroC5lpdk,6856
|
|
24
|
+
geobox/task.py,sha256=xc7UyyRm3cmzH1uznOZ-osRGSAdVufIQsmeVuoJ-IWs,14505
|
|
25
|
+
geobox/tile3d.py,sha256=nEFs2TuzJFC9k__rPlkWwL6s-WjIsyQZS5FEhmfsck0,12093
|
|
26
|
+
geobox/tileset.py,sha256=wk0vSSON0DHiO6NzaScZnmu7d424jFCgNk0kJLDAtA8,25041
|
|
27
|
+
geobox/usage.py,sha256=47nR-JDA3yfsK-o3eWSYA7FeDVJNPIIfvsRTGkfNv9A,9215
|
|
28
|
+
geobox/user.py,sha256=GFQTw8EwLcyf-AMatmejtrgnSHB6Qg-ctE5YrzYIMEQ,17509
|
|
29
|
+
geobox/utils.py,sha256=JmlRqDVIo0vBikzH1XakRrCrEIfLA7_eTJnBWBvGhJI,2243
|
|
30
|
+
geobox/vectorlayer.py,sha256=_i1RdIw_P9BglnsERDLRxDRz6RU3tP7kVjFnRGepfyk,58622
|
|
31
|
+
geobox/version.py,sha256=6IO8AHVTbS4z-cwaqqPt0o3ggwmskimKUoUoeFzx5UE,10560
|
|
32
|
+
geobox/view.py,sha256=saYWWs3tY4ZScy2m5GrIqAQ_lwQ3GqCkHyOfHAGyQCo,42321
|
|
33
|
+
geobox/workflow.py,sha256=Gi4AJlsvo_SFY3Ptgp_3sg_f37eIZNL2whn2yMW8Dkg,12666
|
|
34
|
+
geobox/aio/__init__.py,sha256=EO8VP0d5JPPZH1o1CBdwSMkPZOpyGPK0v9UbIvf6g7w,1906
|
|
35
|
+
geobox/aio/api.py,sha256=AJ7thGyyxWjIpd7RXIBPlN2-X_NxX8Uga2b_9aC3nzw,112460
|
|
36
|
+
geobox/aio/apikey.py,sha256=J_4XqTJ3PZUxsOqR1F-WIbpWzIihX32Y2sjPdSEUboY,9232
|
|
37
|
+
geobox/aio/attachment.py,sha256=EXBdtlb5aKlnm5GHWDfX67v0mFON5gDBtF13rknETYM,13644
|
|
38
|
+
geobox/aio/base.py,sha256=-B56CC7uMbb84DzT1YzytpOwalFRZ8mAtaVajcE4cNI,9189
|
|
39
|
+
geobox/aio/basemap.py,sha256=HFwvNKMQVB1RJ9hGrCHiG_AtMGiy3Z1WStmHqrhFGeU,5950
|
|
40
|
+
geobox/aio/dashboard.py,sha256=xp1SydoQ2zEu1afFcGFF4jRwbOD1CUyuflALpGukL1g,13588
|
|
41
|
+
geobox/aio/feature.py,sha256=wQgfpzo9gtR8XsvAZi6IAna3mZVqYf9xqnl4ZV_lWY4,20186
|
|
42
|
+
geobox/aio/field.py,sha256=shZFodWTtoczAfs0n5JZ6kCVqD2r6dLQP_27tJ6jSSw,11568
|
|
43
|
+
geobox/aio/file.py,sha256=ZabKAvnxfiJFWODPm5cMbjTR9LNATdPR7aU0HeSSI70,21316
|
|
44
|
+
geobox/aio/layout.py,sha256=5YqyqhbOKoZDAqFOvmdxtlUiauOqzZ-ZNmc1wIU00vE,13056
|
|
45
|
+
geobox/aio/log.py,sha256=dlKAq9e7rdsEDZ9lI3GjZe8DTQNrta-BfBJKNkHwgGs,5299
|
|
46
|
+
geobox/aio/map.py,sha256=cOSCSVF3ERWXkMnneGLUryNZsXiScerLzmDw7K81uNE,40441
|
|
47
|
+
geobox/aio/model3d.py,sha256=Gg1fbfNILMeLjBwS6vxcPx-AJWdriIGKtkJ6b06GxsE,15959
|
|
48
|
+
geobox/aio/mosaic.py,sha256=wqXzrK9C-rZeMVamurqZj5Og6rSruvXBssnYfpWmt-g,27029
|
|
49
|
+
geobox/aio/plan.py,sha256=pUBfmd-AfzAn7ejv3x2mp3cYr5mM9nMMdO-YDh1JDVY,13690
|
|
50
|
+
geobox/aio/query.py,sha256=oypo7QKPFUgGoZc5gNzy_s1JxaSGSO7xfmUMdEuL_vk,26838
|
|
51
|
+
geobox/aio/raster.py,sha256=dPCfoD-OP5o4lgX87edYDmOgl4R-APyaNcbU6H5Y13A,33084
|
|
52
|
+
geobox/aio/route.py,sha256=YCTcAfaSFE429fpL4eIb2VrBEdBo6SmolPomVM1F66A,2854
|
|
53
|
+
geobox/aio/scene.py,sha256=cxQdFkFD-Z-ZWJyhrW_W53DyUVILmEQgJoFaG3KU_FI,13130
|
|
54
|
+
geobox/aio/settings.py,sha256=q1B2iZf0ekl21cByP5P9Z0ivWCDxw8UNi16NOXm76qA,7042
|
|
55
|
+
geobox/aio/task.py,sha256=6TEwrBqpT3YWRLo9_c0U9WFs1SHsX3h5Xe0m7XbjHR4,15329
|
|
56
|
+
geobox/aio/tile3d.py,sha256=QWYdmMQSlWqztflLTqFDqQaynkgRLoVZPF4NlwOMqDg,12935
|
|
57
|
+
geobox/aio/tileset.py,sha256=LUsCtafwFCYqG41vNNlbe3GyWXjJ1_UYV-4o7-w-Xk8,27379
|
|
58
|
+
geobox/aio/usage.py,sha256=bcfeNyKk1vm67K1aRT2XMnHazG3Ue93adCv3QY-Riok,9776
|
|
59
|
+
geobox/aio/user.py,sha256=k3JCPQpwiIzJBP6xvKsPkueElW6e1i9a-odNAOIZB9U,18622
|
|
60
|
+
geobox/aio/vectorlayer.py,sha256=1635i0Vc4mvcYmgTx53sanpZJYLe5Ho4YsO2pEPH23A,62087
|
|
61
|
+
geobox/aio/version.py,sha256=HAKB9jHGZ0-EirNg9aNwYYPVFT3YOYQ0JNCxP7Nvk9g,11201
|
|
62
|
+
geobox/aio/view.py,sha256=peTf__JNMqdiTb6VQeuhj_RqljzcskbwwDaHhQ3Cf9w,45353
|
|
63
|
+
geobox/aio/workflow.py,sha256=PVw4S8P9bvuKtFwcwYQIoVAeBAsO5bxiPb-nGj56ifU,13411
|
|
64
|
+
geobox-2.0.1.dist-info/licenses/LICENSE,sha256=AvFB7W94sJYKLDhBxLRshL3upexCOG8HQY_1JibB96w,1063
|
|
65
|
+
geobox-2.0.1.dist-info/METADATA,sha256=sMj5xfV2qxR_uMwZqrpZf-Bf753GGSlIdwyzJ8ouhRY,2760
|
|
66
|
+
geobox-2.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
67
|
+
geobox-2.0.1.dist-info/top_level.txt,sha256=ppXH8Bu2mlB-pLQ6lsoWEm2Gr6wZx1uzkhetsYA5ins,7
|
|
68
|
+
geobox-2.0.1.dist-info/RECORD,,
|
geobox-1.4.2.dist-info/RECORD
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
geobox/__init__.py,sha256=iRkJAFIjMXiAaLTVXvZcW5HM7ttyipGdxFZ15NCM8qU,1895
|
|
2
|
-
geobox/api.py,sha256=8wO1AvyIWf0n2gi-Jv22IM6gyjtbX4KGBYXJTKTh01A,105230
|
|
3
|
-
geobox/apikey.py,sha256=OXsf1ltXcN1jIQJHECdnIE5R_Qksb897xVJOkORRsxw,7522
|
|
4
|
-
geobox/attachment.py,sha256=Q5LVn2j8gm-CptDVhpqtfzyQTDDd1FjW_9MEJBRQb6M,11865
|
|
5
|
-
geobox/base.py,sha256=OdabLbBflglLkNWM7TGCWtPh73M_-42_Ph963K26JQg,12931
|
|
6
|
-
geobox/basemap.py,sha256=fQhCj6ERYCEaY4RLINrftEt4RDakddKZ-wG9Av4Rv_8,4468
|
|
7
|
-
geobox/dashboard.py,sha256=x99jUGzUJra4cdcffSYC0_FvrihZh6sPI4o79f-Aptc,11694
|
|
8
|
-
geobox/enums.py,sha256=Ur8zbUjfx09oxXb-uzwFfDT_Nt8I4AP5pFQKJ9bxVxI,6204
|
|
9
|
-
geobox/exception.py,sha256=jvpnv0M2Ck1FpxHTL_aKYWxGvLnCQ3d9vOrMIktjw1U,1507
|
|
10
|
-
geobox/feature.py,sha256=3Kbc1LjIkBt1YqRAry84BrR7qxx9BexvBB3YQ8D9mGk,18504
|
|
11
|
-
geobox/field.py,sha256=p9eitUpnsiGj6GUhjSomk6HWlsNJSbE-Oh_4VcjaqVo,10562
|
|
12
|
-
geobox/file.py,sha256=cMm-SwTzRKALiIj-gkY4UJzUsOuN5SGz50eU1ylNAxk,20079
|
|
13
|
-
geobox/layout.py,sha256=TdE5FJ7fzbhkexojY8h-r68hXb5UYM6MIfNkxfs_RKA,11285
|
|
14
|
-
geobox/log.py,sha256=Xuq4oKPwaypZ4nYEOIXu13dH4AkQcf0pkTw85gDQqS4,4063
|
|
15
|
-
geobox/map.py,sha256=kksFBS79TOKN9KBByXzj2atSvZhIAuMA85hSjo_szeA,36788
|
|
16
|
-
geobox/model3d.py,sha256=acT5dXwq3Lmhfq5-cPOnYJMZR1gzj3cfF6kyxMleHag,14924
|
|
17
|
-
geobox/mosaic.py,sha256=zKo6cEtaqz7fFcWIzhURxZIkICUQlpEhpFBjGJ5GJ1M,24385
|
|
18
|
-
geobox/plan.py,sha256=jUzl6CQBY6IsdieEppJOmE0sSjwvu6eHO89pC_JFs6I,12066
|
|
19
|
-
geobox/query.py,sha256=ubS1Og3rC_6-zW-cbR30o7bZw2MZNZY652VLCvVvmWE,24173
|
|
20
|
-
geobox/raster.py,sha256=fTIM9HKVddaFfO9o-mEbZSM31qpCr6KAszguInZjd2A,30702
|
|
21
|
-
geobox/route.py,sha256=cKZTTHBHM8woWbhHIpCvrRX_doJcTkGktouee0z7oG0,2723
|
|
22
|
-
geobox/scene.py,sha256=GEzvWB-l-xO-8IodwFAPt4T7lZxuzEKJ1H0cqfx78W4,11301
|
|
23
|
-
geobox/settings.py,sha256=rGRdM18Vo7xnjfZXPLRMbKeoVC_lZmzkNRPS0SQv05o,5660
|
|
24
|
-
geobox/task.py,sha256=eqT73YC2JV9LOnQdsW5BkGsZvOl4pKYPlAtz1MxoT1c,13721
|
|
25
|
-
geobox/tile3d.py,sha256=BCchPCRYdvJoufYZa-I-uwVj6XREaQaYBWAqoizDUDs,11019
|
|
26
|
-
geobox/tileset.py,sha256=bQOckE04F31vb-NYmNsQzXndZSTDZyskWspRikjZuBs,24241
|
|
27
|
-
geobox/usage.py,sha256=_54xL-n-2Bg9wGpoOBKnh85WqdpMWEtqxRJVaFlVWe0,7908
|
|
28
|
-
geobox/user.py,sha256=YY72uRvjKUUWUZbxhrft37FVBlqDeosPMf3EpMVBhc0,15069
|
|
29
|
-
geobox/utils.py,sha256=qLtchKIdw-az3KCiiFv0-Cpmx9RfBxORjlATvVyDIaQ,1314
|
|
30
|
-
geobox/vectorlayer.py,sha256=s8zH68ALeBvep5bW5wuHkDm9x07Z52GhPaeDbznJ3wY,57066
|
|
31
|
-
geobox/version.py,sha256=0GLPhxCeEb2bAkdpPJWtXPXc1KP6kQ_TOMwLAL0ldo0,9374
|
|
32
|
-
geobox/view.py,sha256=xAxBhxwoWAoiG8YJBEF93UJ4e4VeJx17rZpfdl2Q8DU,41507
|
|
33
|
-
geobox/workflow.py,sha256=_WEIy1zLpBFx5yeuZ4ClnwPdU90jQbdy5bWYYIRa4JY,11549
|
|
34
|
-
geobox-1.4.2.dist-info/licenses/LICENSE,sha256=AvFB7W94sJYKLDhBxLRshL3upexCOG8HQY_1JibB96w,1063
|
|
35
|
-
geobox-1.4.2.dist-info/METADATA,sha256=5-4FR_CCE6LGfz96_urdMuEjN1s0xikKEn8vG2Q5WPI,2658
|
|
36
|
-
geobox-1.4.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
37
|
-
geobox-1.4.2.dist-info/top_level.txt,sha256=ppXH8Bu2mlB-pLQ6lsoWEm2Gr6wZx1uzkhetsYA5ins,7
|
|
38
|
-
geobox-1.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|