From 2ca0fa39defb1641eefbf8241db755a2900e55c9 Mon Sep 17 00:00:00 2001 From: Chris Holmes Date: Tue, 25 Jul 2023 20:25:43 -0700 Subject: [PATCH] set gpq conversion to be true by default --- open_buildings/open_buildings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open_buildings/open_buildings.py b/open_buildings/open_buildings.py index d9ce404..6cb304a 100644 --- a/open_buildings/open_buildings.py +++ b/open_buildings/open_buildings.py @@ -17,7 +17,7 @@ # This is necessary because DuckDB does not write the GeoParquet metadata (yet). Once DuckDB implements # this feature can be removed. Setting it to false will give a sense of how fast DuckDB will be, but # if you want to actually use the output GeoParquet files, set it to True. -RUN_GPQ_CONVERSION = False +RUN_GPQ_CONVERSION = True # Global variable, that sets the compression type for the Parquet files. The two options that # will work for both DuckDB and pandas are 'snappy' and 'gzip'. 'snappy' is the default. You can