terrakio-core 0.3.7__tar.gz → 0.3.8__tar.gz
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-0.3.7 → terrakio_core-0.3.8}/PKG-INFO +1 -1
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/pyproject.toml +1 -1
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/__init__.py +1 -1
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/async_client.py +3 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core.egg-info/PKG-INFO +1 -1
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/README.md +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/setup.cfg +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/client.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/config.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/convenience_functions/convenience_functions.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/endpoints/auth.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/endpoints/dataset_management.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/endpoints/group_management.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/endpoints/mass_stats.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/endpoints/model_management.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/endpoints/space_management.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/endpoints/user_management.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/exceptions.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/helper/bounded_taskgroup.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/helper/decorators.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/helper/tiles.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core/sync_client.py +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core.egg-info/SOURCES.txt +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core.egg-info/dependency_links.txt +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core.egg-info/requires.txt +0 -0
- {terrakio_core-0.3.7 → terrakio_core-0.3.8}/terrakio_core.egg-info/top_level.txt +0 -0
|
@@ -134,6 +134,7 @@ class AsyncClient(BaseClient):
|
|
|
134
134
|
output: str = "csv",
|
|
135
135
|
resolution: int = -1,
|
|
136
136
|
geom_fix: bool = False,
|
|
137
|
+
validated: bool = True,
|
|
137
138
|
**kwargs
|
|
138
139
|
):
|
|
139
140
|
"""
|
|
@@ -147,6 +148,7 @@ class AsyncClient(BaseClient):
|
|
|
147
148
|
output (str): Output format ('csv' or 'netcdf')
|
|
148
149
|
resolution (int): Resolution parameter
|
|
149
150
|
geom_fix (bool): Whether to fix the geometry (default False)
|
|
151
|
+
validated (bool): Whether to use validated data (default True)
|
|
150
152
|
**kwargs: Additional parameters to pass to the WCS request
|
|
151
153
|
|
|
152
154
|
Returns:
|
|
@@ -169,6 +171,7 @@ class AsyncClient(BaseClient):
|
|
|
169
171
|
"resolution": resolution,
|
|
170
172
|
"expr": expr,
|
|
171
173
|
"buffer": geom_fix,
|
|
174
|
+
"validated": validated,
|
|
172
175
|
**kwargs
|
|
173
176
|
}
|
|
174
177
|
return await self._terrakio_request("POST", "geoquery", json=payload)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|