Skip to content

Commit a906340

Browse files
committed
fixup! Issue #571/#595 basic docs for JobDatabaseInterface feature
1 parent 37c5139 commit a906340

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

docs/cookbook/job_manager.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ Multi Backend Job Manager
1212
:members:
1313

1414
.. autoclass:: openeo.extra.job_management.CsvJobDatabase
15-
:members: __init__
1615

1716
.. autoclass:: openeo.extra.job_management.ParquetJobDatabase

openeo/extra/job_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ def _is_valid_wkt(self, wkt: str) -> bool:
556556

557557
def read(self) -> pd.DataFrame:
558558
df = pd.read_csv(self.path)
559-
# Workaround for loading of geopandas "geometry" column.
559+
# `df.to_csv` in `persist()` will encode geometries as WKT, so we decode that here.
560560
if (
561561
"geometry" in df.columns
562562
and df["geometry"].dtype.name != "geometry"

0 commit comments

Comments
 (0)