We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25843e7 commit 67144b5Copy full SHA for 67144b5
2 files changed
entrypoint.sh
@@ -1,14 +1,18 @@
1
#!/bin/sh
2
3
+set -eu
4
+
5
# add duckdb cli to path
6
export PATH='/root/.duckdb/cli/latest':$PATH
7
8
# activate python virtual environment
9
. venv/bin/activate
10
11
+echo "Extracting feature layers from $1"
12
python process_osm.py "$@"
13
14
for input_file in out/*.parquet; do
15
+ echo "Sorting and compressing $input_file"
16
output_file="out/$(basename -s .parquet $input_file)-optimized.parquet"
17
./postprocess.sh $input_file $output_file
18
mv $output_file $input_file
postprocess.sh
@@ -1,7 +1,5 @@
-echo $@
-
duckdb << EOF | cat # workaround for https://github.com/duckdb/duckdb/issues/21253
LOAD SPATIAL;
0 commit comments