terrakio-core 0.4.7__py3-none-any.whl → 0.4.93__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 terrakio-core might be problematic. Click here for more details.
- terrakio_core/__init__.py +1 -1
- terrakio_core/accessors.py +800 -328
- terrakio_core/async_client.py +6 -2
- terrakio_core/convenience_functions/create_dataset_file.py +132 -0
- terrakio_core/convenience_functions/geoquries.py +102 -0
- terrakio_core/convenience_functions/{convenience_functions.py → zonal_stats.py} +166 -263
- terrakio_core/endpoints/mass_stats.py +42 -147
- terrakio_core/sync_client.py +1 -346
- terrakio_core-0.4.93.dist-info/METADATA +31 -0
- {terrakio_core-0.4.7.dist-info → terrakio_core-0.4.93.dist-info}/RECORD +11 -10
- {terrakio_core-0.4.7.dist-info → terrakio_core-0.4.93.dist-info}/WHEEL +1 -2
- terrakio_core-0.4.7.dist-info/METADATA +0 -47
- terrakio_core-0.4.7.dist-info/top_level.txt +0 -1
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: terrakio-core
|
|
3
|
-
Version: 0.4.7
|
|
4
|
-
Summary: Core components for Terrakio API clients
|
|
5
|
-
Author-email: Yupeng Chao <yupeng@haizea.com.au>
|
|
6
|
-
Project-URL: Homepage, https://github.com/HaizeaAnalytics/terrakio-python-api
|
|
7
|
-
Project-URL: Bug Tracker, https://github.com/HaizeaAnalytics/terrakio-python-api/issues
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
-
Classifier: Operating System :: OS Independent
|
|
15
|
-
Classifier: Development Status :: 4 - Beta
|
|
16
|
-
Requires-Python: >3.11
|
|
17
|
-
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: requests>=2.25.0
|
|
19
|
-
Requires-Dist: aiohttp>=3.8.0
|
|
20
|
-
Requires-Dist: pyyaml>=5.1
|
|
21
|
-
Requires-Dist: xarray>=2023.1.0
|
|
22
|
-
Requires-Dist: shapely>=2.0.0
|
|
23
|
-
Requires-Dist: geopandas>=0.13.0
|
|
24
|
-
Requires-Dist: google-cloud-storage>=2.0.0
|
|
25
|
-
Requires-Dist: scipy>=1.7.0
|
|
26
|
-
Requires-Dist: nest_asyncio
|
|
27
|
-
Requires-Dist: onnxruntime>=1.10.0
|
|
28
|
-
Requires-Dist: psutil>=5.0.0
|
|
29
|
-
Requires-Dist: h5netcdf>=1.0.0
|
|
30
|
-
Requires-Dist: netcdf4>=1.5.0
|
|
31
|
-
Requires-Dist: aiofiles>=24.1.0
|
|
32
|
-
Provides-Extra: ml
|
|
33
|
-
Requires-Dist: torch>=2.7.1; extra == "ml"
|
|
34
|
-
Requires-Dist: scikit-learn>=1.7.0; extra == "ml"
|
|
35
|
-
Requires-Dist: skl2onnx>=1.19.1; extra == "ml"
|
|
36
|
-
Requires-Dist: onnx>=1.18.0; extra == "ml"
|
|
37
|
-
Requires-Dist: onnxruntime>=1.10.0; extra == "ml"
|
|
38
|
-
|
|
39
|
-
# Terrakio Core
|
|
40
|
-
|
|
41
|
-
Core components for Terrakio API clients. This package provides the foundational classes and utilities used by both the regular and admin API clients.
|
|
42
|
-
|
|
43
|
-
This package is typically not used directly but is a dependency for:
|
|
44
|
-
- `terrakio-api`: Regular user client
|
|
45
|
-
- `terrakio-admin-api`: Administrative client
|
|
46
|
-
|
|
47
|
-
For documentation and usage examples, see the [main repository](https://github.com/HaizeaAnalytics/terrakio-python-api).
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
terrakio_core
|