Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Fix fid_as_index=True doesn't set fid as index read_dataframe with use_arrow=True #265

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
### Bug fixes

- Fix int32 overflow when reading int64 columns (#260)
- Fix `fid_as_index=True` doesn't set fid as index using `read_dataframe` with
`use_arrow=True` (#265)

## 0.6.0 (2023-04-27)

Expand Down
7 changes: 7 additions & 0 deletions pyogrio/_io.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,12 @@ def ogr_open_arrow(

geometry_name = get_string(OGR_L_GetGeometryColumn(ogr_layer))

fid_column = get_string(OGR_L_GetFIDColumn(ogr_layer))
# OGR_L_GetFIDColumn returns the column name if it is a custom column,
# or "" if not. For arrow, the default column name is "OGC_FID".
if fid_column == "":
fid_column = "OGC_FID"

# Apply the attribute filter
if where is not None and where != "":
apply_where_filter(ogr_layer, where)
Expand Down Expand Up @@ -1212,6 +1218,7 @@ def ogr_open_arrow(
'fields': fields[:,2], # return only names
'geometry_type': geometry_type,
'geometry_name': geometry_name,
'fid_column': fid_column,
}

yield meta, reader
Expand Down
1 change: 1 addition & 0 deletions pyogrio/_ogr.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ cdef extern from "ogr_api.h":
OGRErr OGR_L_CreateFeature(OGRLayerH layer, OGRFeatureH feature)
OGRErr OGR_L_CreateField(OGRLayerH layer, OGRFieldDefnH fielddefn, int flexible)
const char* OGR_L_GetName(OGRLayerH layer)
const char* OGR_L_GetFIDColumn(OGRLayerH layer)
const char* OGR_L_GetGeometryColumn(OGRLayerH layer)
OGRSpatialReferenceH OGR_L_GetSpatialRef(OGRLayerH layer)
int OGR_L_TestCapability(OGRLayerH layer, const char *name)
Expand Down
3 changes: 3 additions & 0 deletions pyogrio/geopandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ def read_dataframe(
if use_arrow:
meta, table = result
df = table.to_pandas()
if fid_as_index:
df = df.set_index(meta["fid_column"])
df.index.names = ["fid"]
geometry_name = meta["geometry_name"] or "wkb_geometry"
if geometry_name in df.columns:
df["geometry"] = from_wkb(df.pop(geometry_name), crs=meta["crs"])
Expand Down
15 changes: 6 additions & 9 deletions pyogrio/tests/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

try:
import pandas as pd
from pandas.testing import assert_frame_equal
from pandas.testing import assert_frame_equal, assert_index_equal
from geopandas.testing import assert_geodataframe_equal
except ImportError:
pass
Expand All @@ -33,16 +33,13 @@ def test_read_arrow(naturalearth_lowres_all_ext):


def test_read_arrow_fid(naturalearth_lowres_all_ext):
result = read_dataframe(
naturalearth_lowres_all_ext, use_arrow=True, fid_as_index=True
)
kwargs = {"use_arrow": True, "where": "fid >= 2 AND fid <= 3"}

if naturalearth_lowres_all_ext.suffix == ".gpkg":
fid_col = "fid"
else:
fid_col = "OGC_FID"
df = read_dataframe(naturalearth_lowres_all_ext, fid_as_index=False, **kwargs)
assert_index_equal(df.index, pd.RangeIndex(0, 2))

assert fid_col in result.columns
df = read_dataframe(naturalearth_lowres_all_ext, fid_as_index=True, **kwargs)
assert_index_equal(df.index, pd.Index([2, 3], name="fid"))


def test_read_arrow_columns(naturalearth_lowres):
Expand Down
Loading