From f1e15d3a993266b3ee134727ce78c2cc20884687 Mon Sep 17 00:00:00 2001 From: Richard Law Date: Thu, 22 Aug 2024 18:50:34 +1200 Subject: [PATCH] uncomment logging statement --- vector2dggs/h3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vector2dggs/h3.py b/vector2dggs/h3.py index 84c812c..08fa5bc 100644 --- a/vector2dggs/h3.py +++ b/vector2dggs/h3.py @@ -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]) @@ -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 = (