Skip to content

Commit

Permalink
uncomment logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
alpha-beta-soup committed Aug 22, 2024
1 parent 143f867 commit f1e15d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vector2dggs/h3.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def polyfill(
linetracing (for LineString), and writes out to parquet.
"""
df = gpd.read_parquet(pq_in).reset_index()

if spatial_sort_col != "none":
df = df.drop(columns=[spatial_sort_col])

Expand Down Expand Up @@ -252,8 +252,8 @@ def _index(

ddf = dgpd.from_geopandas(df, chunksize=max(1, chunksize), sort=True)

# LOGGER.info("Spatially sorting and partitioning (%s)", spatial_sorting)
if spatial_sorting != "none":
LOGGER.info("Spatially sorting and partitioning (%s)", spatial_sorting)
ddf = ddf.spatial_shuffle(by=spatial_sorting)

spatial_sort_col = (
Expand Down

0 comments on commit f1e15d3

Please sign in to comment.