2014-11-24 18:35:06 +00:00
|
|
|
PREFIX ?= /usr/local
|
2015-10-29 23:46:57 +00:00
|
|
|
MANDIR ?= $(PREFIX)/share/man/man1/
|
2016-04-26 22:39:42 +00:00
|
|
|
BUILDTYPE ?= Release
|
2014-02-22 00:55:36 +00:00
|
|
|
|
2015-12-23 00:26:24 +00:00
|
|
|
# inherit from env if set
|
|
|
|
CC := $(CC)
|
2016-03-24 21:36:36 +00:00
|
|
|
CXX := $(CXX)
|
2015-12-23 00:26:24 +00:00
|
|
|
CFLAGS := $(CFLAGS)
|
2016-03-24 21:36:36 +00:00
|
|
|
CXXFLAGS := $(CXXFLAGS) -std=c++11
|
2015-12-23 00:26:24 +00:00
|
|
|
LDFLAGS := $(LDFLAGS)
|
2016-04-26 22:39:42 +00:00
|
|
|
WARNING_FLAGS := -Wall
|
|
|
|
RELEASE_FLAGS := -O3 -DNDEBUG
|
|
|
|
DEBUG_FLAGS := -O0 -DDEBUG -fno-inline-functions -fno-omit-frame-pointer
|
|
|
|
|
|
|
|
ifeq ($(BUILDTYPE),Release)
|
|
|
|
FINAL_FLAGS := -g $(WARNING_FLAGS) $(RELEASE_FLAGS)
|
|
|
|
else
|
|
|
|
FINAL_FLAGS := -g $(WARNING_FLAGS) $(DEBUG_FLAGS)
|
|
|
|
endif
|
2015-12-23 00:26:24 +00:00
|
|
|
|
2015-11-03 22:04:28 +00:00
|
|
|
all: tippecanoe tippecanoe-enumerate tippecanoe-decode tile-join
|
2015-07-28 19:48:49 +00:00
|
|
|
|
|
|
|
docs: man/tippecanoe.1
|
2014-02-22 00:55:36 +00:00
|
|
|
|
2015-11-30 19:10:19 +00:00
|
|
|
install: tippecanoe tippecanoe-enumerate tippecanoe-decode tile-join
|
2014-12-02 19:38:48 +00:00
|
|
|
mkdir -p $(PREFIX)/bin
|
2015-10-29 23:46:57 +00:00
|
|
|
mkdir -p $(MANDIR)
|
2014-09-26 21:53:10 +00:00
|
|
|
cp tippecanoe $(PREFIX)/bin/tippecanoe
|
2015-11-03 22:04:28 +00:00
|
|
|
cp tippecanoe-enumerate $(PREFIX)/bin/tippecanoe-enumerate
|
|
|
|
cp tippecanoe-decode $(PREFIX)/bin/tippecanoe-decode
|
|
|
|
cp tile-join $(PREFIX)/bin/tile-join
|
2015-10-29 23:46:57 +00:00
|
|
|
cp man/tippecanoe.1 $(MANDIR)/tippecanoe.1
|
2014-02-06 06:04:58 +00:00
|
|
|
|
2015-05-29 16:06:41 +00:00
|
|
|
man/tippecanoe.1: README.md
|
|
|
|
md2man-roff README.md > man/tippecanoe.1
|
|
|
|
|
2014-09-18 23:23:36 +00:00
|
|
|
PG=
|
|
|
|
|
2016-04-27 22:41:40 +00:00
|
|
|
ALL_H = $(shell find . '(' -name '*.h' -o -name '*.hpp' ')')
|
2016-04-27 20:55:28 +00:00
|
|
|
H = $(wildcard *.h) $(wildcard *.hpp)
|
|
|
|
C = $(wildcard *.c) $(wildcard *.cpp)
|
2014-10-27 16:52:25 +00:00
|
|
|
|
2016-04-23 00:10:33 +00:00
|
|
|
INCLUDES = -I/usr/local/include -I.
|
2014-11-16 07:46:39 +00:00
|
|
|
LIBS = -L/usr/local/lib
|
|
|
|
|
2016-04-27 22:33:30 +00:00
|
|
|
tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o clipper/clipper.o mvt.o serial.o main.o
|
2016-04-26 22:39:42 +00:00
|
|
|
$(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread
|
2014-09-15 22:18:08 +00:00
|
|
|
|
2015-11-03 22:04:28 +00:00
|
|
|
tippecanoe-enumerate: enumerate.o
|
2016-04-26 22:39:42 +00:00
|
|
|
$(CC) $(PG) $(LIBS) $(FINAL_FLAGS) $(CFLAGS) -o $@ $^ $(LDFLAGS) -lsqlite3
|
2014-10-23 21:04:57 +00:00
|
|
|
|
2016-04-23 00:45:06 +00:00
|
|
|
tippecanoe-decode: decode.o projection.o mvt.o
|
2016-04-26 22:39:42 +00:00
|
|
|
$(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3
|
2014-10-23 22:40:27 +00:00
|
|
|
|
2016-04-27 21:59:20 +00:00
|
|
|
tile-join: tile-join.o projection.o pool.o mbtiles.o mvt.o memfile.o
|
2016-04-26 22:39:42 +00:00
|
|
|
$(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2016-04-27 22:41:40 +00:00
|
|
|
%.o: %.c $(ALL_H)
|
2016-04-27 22:33:30 +00:00
|
|
|
$(CC) $(PG) $(INCLUDES) $(FINAL_FLAGS) $(CFLAGS) -c -o $@ $<
|
2014-09-22 17:44:30 +00:00
|
|
|
|
2016-04-27 22:41:40 +00:00
|
|
|
%.o: %.cpp $(ALL_H)
|
2016-04-27 22:33:30 +00:00
|
|
|
$(CXX) $(PG) $(INCLUDES) $(FINAL_FLAGS) $(CXXFLAGS) -c -o $@ $<
|
2016-04-27 19:25:03 +00:00
|
|
|
|
2014-09-26 21:53:10 +00:00
|
|
|
clean:
|
2015-12-23 00:26:24 +00:00
|
|
|
rm -f tippecanoe *.o
|
2015-06-03 18:21:40 +00:00
|
|
|
|
|
|
|
indent:
|
2015-06-03 19:47:56 +00:00
|
|
|
clang-format -i -style="{BasedOnStyle: Google, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, ColumnLimit: 0, ContinuationIndentWidth: 8, SpaceAfterCStyleCast: true, IndentCaseLabels: false, AllowShortBlocksOnASingleLine: false, AllowShortFunctionsOnASingleLine: false}" $(C) $(H)
|
2016-01-28 18:52:43 +00:00
|
|
|
|
|
|
|
TESTS = $(wildcard tests/*/out/*.json)
|
|
|
|
SPACE = $(NULL) $(NULL)
|
|
|
|
|
2016-05-03 18:30:53 +00:00
|
|
|
test: tippecanoe tippecanoe-decode $(addsuffix .check,$(TESTS)) parallel-test pbf-test join-test
|
2016-01-28 18:52:43 +00:00
|
|
|
|
2016-03-29 22:01:03 +00:00
|
|
|
# Work around Makefile and filename punctuation limits: _ for space, @ for :, % for /
|
2016-01-28 18:52:43 +00:00
|
|
|
%.json.check:
|
2016-03-29 22:18:01 +00:00
|
|
|
./tippecanoe -ad -f -o $@.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json.check,%,$(word 4,$(subst /, ,$@)))))) $(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.json) < /dev/null
|
2016-01-28 18:57:55 +00:00
|
|
|
./tippecanoe-decode $@.mbtiles > $@.out
|
|
|
|
cmp $(patsubst %.check,%,$@) $@.out
|
2016-01-28 18:52:43 +00:00
|
|
|
rm $@.out $@.mbtiles
|
2016-01-28 22:06:51 +00:00
|
|
|
|
2016-02-02 20:21:19 +00:00
|
|
|
parallel-test:
|
|
|
|
mkdir -p tests/parallel
|
2016-04-28 21:43:04 +00:00
|
|
|
perl -e 'for ($$i = 0; $$i < 20; $$i++) { $$lon = rand(360) - 180; $$lat = rand(180) - 90; print "{ \"type\": \"Feature\", \"properties\": { \"yes\": \"no\", \"who\": 1 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ $$lon, $$lat ] } }\n"; }' > tests/parallel/in1.json
|
2016-02-02 23:43:27 +00:00
|
|
|
perl -e 'for ($$i = 0; $$i < 300000; $$i++) { $$lon = rand(360) - 180; $$lat = rand(180) - 90; print "{ \"type\": \"Feature\", \"properties\": { }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ $$lon, $$lat ] } }\n"; }' > tests/parallel/in2.json
|
|
|
|
perl -e 'for ($$i = 0; $$i < 20; $$i++) { $$lon = rand(360) - 180; $$lat = rand(180) - 90; print "{ \"type\": \"Feature\", \"properties\": { }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ $$lon, $$lat ] } }\n"; }' > tests/parallel/in3.json
|
|
|
|
./tippecanoe -z5 -f -pi -l test -n test -o tests/parallel/linear-file.mbtiles tests/parallel/in[123].json
|
|
|
|
./tippecanoe -z5 -f -pi -l test -n test -P -o tests/parallel/parallel-file.mbtiles tests/parallel/in[123].json
|
|
|
|
cat tests/parallel/in[123].json | ./tippecanoe -z5 -f -pi -l test -n test -o tests/parallel/linear-pipe.mbtiles
|
|
|
|
cat tests/parallel/in[123].json | ./tippecanoe -z5 -f -pi -l test -n test -P -o tests/parallel/parallel-pipe.mbtiles
|
2016-02-02 20:21:19 +00:00
|
|
|
./tippecanoe-decode tests/parallel/linear-file.mbtiles > tests/parallel/linear-file.json
|
|
|
|
./tippecanoe-decode tests/parallel/parallel-file.mbtiles > tests/parallel/parallel-file.json
|
|
|
|
./tippecanoe-decode tests/parallel/linear-pipe.mbtiles > tests/parallel/linear-pipe.json
|
|
|
|
./tippecanoe-decode tests/parallel/parallel-pipe.mbtiles > tests/parallel/parallel-pipe.json
|
|
|
|
cmp tests/parallel/linear-file.json tests/parallel/parallel-file.json
|
|
|
|
cmp tests/parallel/linear-file.json tests/parallel/linear-pipe.json
|
|
|
|
cmp tests/parallel/linear-file.json tests/parallel/parallel-pipe.json
|
|
|
|
rm tests/parallel/*.mbtiles tests/parallel/*.json
|
|
|
|
|
2016-03-23 00:12:09 +00:00
|
|
|
pbf-test:
|
|
|
|
./tippecanoe-decode tests/pbf/11-328-791.vector.pbf 11 328 791 > tests/pbf/11-328-791.vector.pbf.out
|
|
|
|
cmp tests/pbf/11-328-791.json tests/pbf/11-328-791.vector.pbf.out
|
|
|
|
rm tests/pbf/11-328-791.vector.pbf.out
|
|
|
|
|
2016-05-03 18:30:53 +00:00
|
|
|
join-test:
|
|
|
|
./tippecanoe -f -z9 -z12 -o tests/join-population/tabblock_06001420.mbtiles tests/join-population/tabblock_06001420.json
|
|
|
|
./tile-join -f -o tests/join-population/joined.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles
|
|
|
|
./tile-join -f -i -o tests/join-population/joined-i.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles
|
|
|
|
./tippecanoe-decode tests/join-population/joined.mbtiles > tests/join-population/joined.mbtiles.json.check
|
|
|
|
./tippecanoe-decode tests/join-population/joined-i.mbtiles > tests/join-population/joined-i.mbtiles.json.check
|
|
|
|
cmp tests/join-population/joined.mbtiles.json.check tests/join-population/joined.mbtiles.json
|
|
|
|
cmp tests/join-population/joined-i.mbtiles.json.check tests/join-population/joined-i.mbtiles.json
|
|
|
|
rm tests/join-population/tabblock_06001420.mbtiles tests/join-population/joined.mbtiles tests/join-population/joined-i.mbtiles tests/join-population/joined.mbtiles.json.check tests/join-population/joined-i.mbtiles.json.check
|
|
|
|
|
2016-01-28 22:06:51 +00:00
|
|
|
# Use this target to regenerate the standards that the tests are compared against
|
|
|
|
# after making a change that legitimately changes their output
|
|
|
|
|
|
|
|
prep-test: $(TESTS)
|
|
|
|
|
|
|
|
tests/%.json: Makefile tippecanoe tippecanoe-decode
|
2016-03-29 22:01:03 +00:00
|
|
|
./tippecanoe -f -o $@.check.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json,%,$(word 4,$(subst /, ,$@)))))) $(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.json)
|
2016-01-28 22:38:10 +00:00
|
|
|
./tippecanoe-decode $@.check.mbtiles > $@
|
2016-01-28 22:06:51 +00:00
|
|
|
cmp $(patsubst %.check,%,$@) $@
|
2016-01-28 22:38:10 +00:00
|
|
|
rm $@.check.mbtiles
|