From f7b6ce5a88ad7d946801828888ec76a395867b31 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Wed, 25 Sep 2024 21:10:32 +0200 Subject: [PATCH] feat(parquet): SORT_BY_BBOX=YES (#55) --- bin/cmd/feature/ogr.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/cmd/feature/ogr.js b/bin/cmd/feature/ogr.js index fd1e2cf..82d62da 100644 --- a/bin/cmd/feature/ogr.js +++ b/bin/cmd/feature/ogr.js @@ -55,6 +55,11 @@ function formatSpecificArgs (format) { '-lco', 'RESIZE=YES' ] } + if (format.includes('parquet')) { + return [ + '-lco', 'SORT_BY_BBOX=YES' + ] + } return [] }