We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
JobDatabaseInterface
1 parent 37c5139 commit a906340Copy full SHA for a906340
docs/cookbook/job_manager.rst
@@ -12,6 +12,5 @@ Multi Backend Job Manager
12
:members:
13
14
.. autoclass:: openeo.extra.job_management.CsvJobDatabase
15
- :members: __init__
16
17
.. autoclass:: openeo.extra.job_management.ParquetJobDatabase
openeo/extra/job_management.py
@@ -556,7 +556,7 @@ def _is_valid_wkt(self, wkt: str) -> bool:
556
557
def read(self) -> pd.DataFrame:
558
df = pd.read_csv(self.path)
559
- # Workaround for loading of geopandas "geometry" column.
+ # `df.to_csv` in `persist()` will encode geometries as WKT, so we decode that here.
560
if (
561
"geometry" in df.columns
562
and df["geometry"].dtype.name != "geometry"
0 commit comments