cecil 0.0.26__tar.gz → 0.0.28__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cecil
3
- Version: 0.0.26
3
+ Version: 0.0.28
4
4
  Summary: Python SDK for Cecil Earth
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE.txt
@@ -8,13 +8,13 @@ Classifier: Development Status :: 4 - Beta
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
10
  Classifier: Programming Language :: Python :: 3
11
- Requires-Python: >=3.11
11
+ Requires-Python: >=3.10
12
12
  Requires-Dist: dask==2025.9.1
13
13
  Requires-Dist: pydantic<3.0.0,>=2.11.9
14
14
  Requires-Dist: requests<3.0.0,>=2.32.5
15
15
  Requires-Dist: rioxarray==0.19.0
16
16
  Requires-Dist: snowflake-connector-python[pandas]<4.0.0,>=3.17.4
17
- Requires-Dist: xarray==2025.9.1
17
+ Requires-Dist: xarray==2025.6.1
18
18
  Description-Content-Type: text/markdown
19
19
 
20
20
  # Cecil SDK
@@ -7,7 +7,7 @@ name = "cecil"
7
7
  dynamic = ["version"]
8
8
  description = 'Python SDK for Cecil Earth'
9
9
  readme = "README.md"
10
- requires-python = ">=3.11"
10
+ requires-python = ">=3.10"
11
11
  license = "MIT"
12
12
  classifiers = [
13
13
  "Development Status :: 4 - Beta",
@@ -21,7 +21,7 @@ dependencies = [
21
21
  "requests>=2.32.5,<3.0.0",
22
22
  "rioxarray==0.19.0",
23
23
  "snowflake-connector-python[pandas]>=3.17.4,<4.0.0",
24
- "xarray==2025.9.1"
24
+ "xarray==2025.6.1"
25
25
  ]
26
26
 
27
27
  [tool.hatch.version]
@@ -36,6 +36,7 @@ from .models import (
36
36
  User,
37
37
  UserCreate,
38
38
  DataRequestMetadata,
39
+ DataRequestParquetFiles,
39
40
  )
40
41
  from .version import __version__
41
42
  from .xarray import load_xarray
@@ -90,24 +91,12 @@ class Client:
90
91
  return load_xarray(metadata)
91
92
 
92
93
  def load_dataframe(self, data_request_id: str) -> pd.DataFrame:
93
-
94
- data_request = self.get_data_request(data_request_id)
95
-
96
- try:
97
- secure_view = {
98
- "528f54b8-1cb9-412c-a646-30a55ddb7cbd": "data_request_db.ibat.kba",
99
- "f30f2125-c472-43c7-85c8-52f0d4b1d160": "data_request_db.ibat.redlist",
100
- "c1ee0d62-95ef-49b1-adf1-6a5a933d726d": "data_request_db.ibat.wdpa",
101
- }[data_request.dataset_id]
102
- except KeyError:
103
- raise Error(
104
- "method not allowed",
105
- {"message": "load_dataframe() is not supported for raster datasets."},
106
- )
107
-
108
- return self._query(
109
- f"select * from {secure_view} where data_request_id = '{data_request_id}'"
110
- )
94
+ res = self._get(url=f"/v0/data-requests/{data_request_id}/parquet-files")
95
+ metadata = DataRequestParquetFiles(**res)
96
+ df = pd.concat((pd.read_parquet(f) for f in metadata.files))
97
+ return df[
98
+ [col for col in df.columns if col not in ("organisation_id", "created_at")]
99
+ ]
111
100
 
112
101
  def create_transformation(
113
102
  self, data_request_id: str, crs: str, spatial_resolution: float
@@ -135,3 +135,8 @@ class DataRequestMetadata(BaseModel):
135
135
  aoi_id: str
136
136
  data_request_id: str
137
137
  files: List[File]
138
+
139
+
140
+ class DataRequestParquetFiles(BaseModel):
141
+ model_config = ConfigDict(alias_generator=to_camel, populate_by_name=True)
142
+ files: List[str]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.28"
@@ -1 +0,0 @@
1
- __version__ = "0.0.26"
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