commit e46813ef907f2786b6fe3784611de8bc7ec0770b (tree)
parent a01461016b78c3a576bdd669bc672fcd5c1fb552
Author: Jonas Jakštys <jonasjakstys1@gmail.com>
Date: Sat, 9 Mar 2024 19:12:40 +0200
sorting locale: LC_ALL=C
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/contours/Makefile b/contours/Makefile
@@ -1,11 +1,13 @@
include config.mk
+export LC_ALL=C.UTF-8
+
OUTSIZE = $(shell awk $(addprefix -v ,$(BOUNDS)) 'BEGIN{print ymax-ymin" "xmax-xmin}' /dev/null)
XYZ = $(patsubst %.zip,%.xyz,$(wildcard *.zip))
SORT = sort -n -k2 -k1 -t,
.PHONY: all
-all: smooth_2_5.gpkg smooth_5.gpkg
+all: smooth_2.gpkg smooth_2_5.gpkg
smooth_%.gpkg: db/smooth_%
ogr2ogr $@ "PG:host=127.0.0.1 user=osm dbname=osm password=osm" $(basename $@)