1 |
785
|
aaronmk
|
##### Vars/functions
|
2 |
|
|
|
3 |
895
|
aaronmk
|
bin := ../bin
|
4 |
|
|
|
5 |
1115
|
aaronmk
|
review_ = $(bin)/review <$(1) >for_review/$(1)
|
6 |
|
|
review = $(call review_,$@)
|
7 |
924
|
aaronmk
|
|
8 |
1121
|
aaronmk
|
coreMaps := DwC1-DwC2.specimens.csv DwC2-VegBIEN.specimens.csv\
|
9 |
|
|
VegX-VegBIEN.organisms.csv
|
10 |
744
|
aaronmk
|
|
11 |
785
|
aaronmk
|
##### General targets
|
12 |
|
|
|
13 |
1115
|
aaronmk
|
all: _always $(coreMaps) join_maps ch_root_maps ;
|
14 |
150
|
aaronmk
|
|
15 |
223
|
aaronmk
|
.SUFFIXES:
|
16 |
|
|
|
17 |
383
|
aaronmk
|
_always:
|
18 |
|
|
.PHONY: _always
|
19 |
188
|
aaronmk
|
|
20 |
383
|
aaronmk
|
clean: _always
|
21 |
196
|
aaronmk
|
$(RM) $(all)
|
22 |
188
|
aaronmk
|
|
23 |
924
|
aaronmk
|
all :=
|
24 |
|
|
|
25 |
423
|
aaronmk
|
remake: _always clean all ;
|
26 |
|
|
|
27 |
785
|
aaronmk
|
##### Core maps cleanup
|
28 |
198
|
aaronmk
|
|
29 |
895
|
aaronmk
|
ifneq ($(filter .%.last_cleanup,$(MAKECMDGOALS)),)
|
30 |
|
|
.%.last_cleanup: %
|
31 |
|
|
$(bin)/in_place $< $(bin)/simplify_xpath
|
32 |
1132
|
aaronmk
|
$(bin)/in_place $< $(bin)/sort_map
|
33 |
895
|
aaronmk
|
touch $@
|
34 |
1115
|
aaronmk
|
$(call review_,$<)
|
35 |
779
|
aaronmk
|
.PRECIOUS: .%.last_cleanup
|
36 |
895
|
aaronmk
|
else
|
37 |
|
|
$(coreMaps): _always
|
38 |
|
|
$(MAKE) $(@:%=.%.last_cleanup)
|
39 |
|
|
endif
|
40 |
350
|
aaronmk
|
|
41 |
1140
|
aaronmk
|
##### Maps generated with join
|
42 |
1115
|
aaronmk
|
|
43 |
|
|
joinMaps :=
|
44 |
|
|
|
45 |
1128
|
aaronmk
|
DwC-VegBIEN.specimens.csv: DwC1-DwC2.specimens.csv DwC2-VegBIEN.specimens.csv
|
46 |
|
|
env header_num=1 $(bin)/join_union_sort <$+ >$@
|
47 |
1118
|
aaronmk
|
joinMaps += DwC-VegBIEN.specimens.csv
|
48 |
|
|
|
49 |
1140
|
aaronmk
|
DwC.self.specimens.csv: DwC-VegBIEN.specimens.csv
|
50 |
|
|
$(bin)/cols 0 0 <$< >$@
|
51 |
|
|
joinMaps += DwC.self.specimens.csv
|
52 |
|
|
|
53 |
1115
|
aaronmk
|
join_maps: $(joinMaps) ;
|
54 |
|
|
|
55 |
|
|
all += $(joinMaps)
|
56 |
|
|
|
57 |
785
|
aaronmk
|
##### Maps generated with ch_root
|
58 |
212
|
aaronmk
|
|
59 |
924
|
aaronmk
|
define chRoot
|
60 |
|
|
$(bin)/ch_root <$< >$@
|
61 |
1115
|
aaronmk
|
$(review)
|
62 |
924
|
aaronmk
|
endef
|
63 |
197
|
aaronmk
|
|
64 |
924
|
aaronmk
|
chRootMaps :=
|
65 |
|
|
|
66 |
438
|
aaronmk
|
VegX-VegBIEN.plots.csv: VegX-VegBIEN.organisms.csv
|
67 |
188
|
aaronmk
|
env \
|
68 |
439
|
aaronmk
|
left_in_root='/*s/individualOrganismObservation/*ID->/*s/plotObservation' \
|
69 |
|
|
left_out_root='/*s/plotObservation' \
|
70 |
525
|
aaronmk
|
right_in_root='/taxonoccurrence/*_id/locationevent' \
|
71 |
|
|
right_out_root='/locationevent' \
|
72 |
439
|
aaronmk
|
$(chRoot)
|
73 |
924
|
aaronmk
|
chRootMaps += VegX-VegBIEN.plots.csv
|
74 |
439
|
aaronmk
|
|
75 |
|
|
VegX-VegBIEN.stems.csv: VegX-VegBIEN.organisms.csv
|
76 |
|
|
env \
|
77 |
441
|
aaronmk
|
left_in_root='/*s/individualOrganismObservation->/*s/individualOrganismObservation[relatedItem[relationshipType=stemParent]/relatedItemID]' \
|
78 |
504
|
aaronmk
|
left_out_root='/*s/individualOrganismObservation[relatedItem[relationshipType=stemParent]/relatedItemID]' \
|
79 |
681
|
aaronmk
|
right_in_root='/taxonoccurrence/aggregateoccurrence/*_id/plantobservation/stemobservation' \
|
80 |
673
|
aaronmk
|
right_out_root='/stemobservation' \
|
81 |
439
|
aaronmk
|
$(chRoot)
|
82 |
924
|
aaronmk
|
chRootMaps += VegX-VegBIEN.plots.csv
|
83 |
|
|
|
84 |
|
|
ch_root_maps: $(chRootMaps) ;
|
85 |
|
|
|
86 |
|
|
all += $(chRootMaps)
|