forked from ryanfb/pleiades-tgn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
27 lines (19 loc) · 820 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
all: pleiades-tgn.csv
full.zip:
wget http://vocab.getty.edu/dataset/tgn/full.zip
TGNOut_Full.nt: full.zip
7za x full.zip
labels.nt: TGNOut_Full.nt
grep '<http://www.w3.org/2000/01/rdf-schema#label>' TGNOut_Full.nt > labels.nt
geometries.nt: TGNOut_Full.nt
grep '<http://schema.org/latitude\|longitude>' TGNOut_Full.nt > geometries.nt
pleiades-places-latest.csv:
wget http://atlantides.org/downloads/pleiades/dumps/[email protected]
gunzip [email protected]
pleiades-names-latest.csv:
wget http://atlantides.org/downloads/pleiades/dumps/[email protected]
gunzip [email protected]
pleiades-tgn.csv: pleiades-tgn.rb labels.nt geometries.nt pleiades-places-latest.csv pleiades-names-latest.csv
./pleiades-tgn.rb labels.nt geometries.nt pleiades-places-latest.csv pleiades-names-latest.csv | sort -u > $@
clean:
rm -vf pleiades-*-latest.csv *.nt full.zip