Project

General

Profile

1
##### Vars/functions
2

    
3
bin := ../bin
4

    
5
review_ = $(bin)/review <$(1) >for_review/$(1)
6
review = $(call review_,$@)
7

    
8
coreMaps := DwC1-DwC2.specimens.csv DwC2-VegBIEN.specimens.csv\
9
VegX-VegBIEN.organisms.csv
10

    
11
##### General targets
12

    
13
all: _always $(coreMaps) join_maps ch_root_maps ;
14

    
15
.SUFFIXES:
16

    
17
_always:
18
.PHONY: _always
19

    
20
clean: _always
21
	$(RM) $(all)
22

    
23
all :=
24

    
25
remake: _always clean all ;
26

    
27
##### Core maps cleanup
28

    
29
ifneq ($(filter .%.last_cleanup,$(MAKECMDGOALS)),)
30
.%.last_cleanup: %
31
	$(bin)/in_place $< $(bin)/simplify_xpath
32
	$(bin)/in_place $< $(bin)/sort 1 0
33
	touch $@
34
	$(call review_,$<)
35
.PRECIOUS: .%.last_cleanup
36
else
37
$(coreMaps): _always
38
	$(MAKE) $(@:%=.%.last_cleanup)
39
endif
40

    
41
##### Maps generated with join/union
42

    
43
joinMaps :=
44

    
45
DwC-VegBIEN.specimens.csv: DwC1-DwC2.specimens.csv DwC2-VegBIEN.specimens.csv
46
	env header_num=1 $(bin)/join_union_sort <$+ >$@
47
	$(review)
48
joinMaps += DwC-VegBIEN.specimens.csv
49

    
50
join_maps: $(joinMaps) ;
51

    
52
all += $(joinMaps)
53

    
54
##### Maps generated with ch_root
55

    
56
define chRoot
57
$(bin)/ch_root <$< >$@
58
$(review)
59
endef
60

    
61
chRootMaps :=
62

    
63
VegX-VegBIEN.plots.csv: VegX-VegBIEN.organisms.csv
64
	env \
65
left_in_root='/*s/individualOrganismObservation/*ID->/*s/plotObservation' \
66
left_out_root='/*s/plotObservation' \
67
right_in_root='/taxonoccurrence/*_id/locationevent' \
68
right_out_root='/locationevent' \
69
$(chRoot)
70
chRootMaps += VegX-VegBIEN.plots.csv
71

    
72
VegX-VegBIEN.stems.csv: VegX-VegBIEN.organisms.csv
73
	env \
74
left_in_root='/*s/individualOrganismObservation->/*s/individualOrganismObservation[relatedItem[relationshipType=stemParent]/relatedItemID]' \
75
left_out_root='/*s/individualOrganismObservation[relatedItem[relationshipType=stemParent]/relatedItemID]' \
76
right_in_root='/taxonoccurrence/aggregateoccurrence/*_id/plantobservation/stemobservation' \
77
right_out_root='/stemobservation' \
78
$(chRoot)
79
chRootMaps += VegX-VegBIEN.plots.csv
80

    
81
ch_root_maps: $(chRootMaps) ;
82

    
83
all += $(chRootMaps)
(7-7/11)