mirror of
https://github.com/oDinZu/natural-earth-vector.git
synced 2025-02-23 00:02:17 -05:00
17 lines
293 B
Makefile
17 lines
293 B
Makefile
.PHONY: all
|
|
|
|
all: clean fetch write
|
|
|
|
install:
|
|
pip3 install -U SPARQLWrapper
|
|
pip3 install -U fiona
|
|
pip3 install -U csvtomd
|
|
|
|
clean:
|
|
cd ../.. && rm -rf temp_shape/*
|
|
|
|
fetch:
|
|
cd ../.. && ./tools/wikidata/update.sh fetch && cd ./.
|
|
|
|
write:
|
|
cd ../.. && ./tools/wikidata/update.sh write && cd ./.
|