Project

General

Profile

1
#!/bin/bash -e
2
. "$(dirname "${BASH_SOURCE[0]}")"/../table.run
3

    
4
if self_not_included; then
5

    
6
herbaria_filter.ih.csv_/make()
7
{
8
	echo_func; set_make_vars; check_target_exists
9
	
10
	use_local
11
	limit= query='SELECT DISTINCT acronym FROM herbaria.ih ORDER BY acronym' \
12
to_target pg_export
13
}
14

    
15
plant_fraction/make()
16
{
17
	echo_func; set_make_vars; mk_table_esc
18
	
19
	use_local_remote
20
	if remaking; then table=plant_fraction table_esc= mk_drop|mysql_ANSI; fi
21
	(benign_error=1 mysql <<'EOF'
22
CREATE TABLE `plant_fraction` (
23
 `institution_code` varchar(255) NOT NULL PRIMARY KEY,
24
 `plant_fraction` float NOT NULL,
25
 KEY `plant_fraction` (`plant_fraction`)
26
) ENGINE=MyISAM DEFAULT CHARSET=utf8
27
EOF
28
) || table=plant_fraction skip_table || return 0
29
	mysql_ANSI <<EOF
30
INSERT INTO "plant_fraction"
31
SELECT
32
  institution_code
33
, COUNT(family LIKE '%aceae%' OR family IN ('Compositae','Gramineae','Palmae','Guttiferae','Cruciferae','Labiatae','Umbelliferae','Leguminosae'))/COUNT(*)
34
	AS plant_fraction
35
FROM ${limit:+(SELECT * FROM }$table_esc ${limit:+$(prefix= limit)) s}
36
GROUP BY institution_code
37
ORDER BY institution_code
38
EOF
39
}
40

    
41
plant_fraction/seal()
42
{
43
	echo_func; set_make_vars
44
	
45
	use_local_remote
46
	table=plant_fraction table_esc= mysql_seal_table
47
}
48

    
49
plant_fraction_for_herbaria_filter/make()
50
{
51
	echo_func; set_make_vars; mk_table_esc
52
	
53
	use_local_remote
54
	if remaking; then
55
		table=plant_fraction_for_herbaria_filter table_esc= mk_drop|mysql_ANSI
56
	fi
57
	(benign_error=1 mysql <<'EOF'
58
CREATE VIEW `plant_fraction_for_herbaria_filter` AS
59
SELECT * FROM `plant_fraction`
60
WHERE plant_fraction >= 0.8
61
EOF
62
) || table=plant_fraction_for_herbaria_filter skip_table || return 0
63
}
64

    
65
herbaria_filter/make()
66
{
67
	echo_func; set_make_vars
68
	
69
	use_local_remote
70
	local table="$target_stem"
71
	if remaking; then mk_drop|mysql_ANSI; fi
72
	
73
	herbaria_filter.ih.csv_/make
74
	plant_fraction_for_herbaria_filter/make
75
	
76
	(benign_error=1 mysql <<'EOF'
77
CREATE TABLE `herbaria_filter` (
78
 `institution_code` varchar(255) NOT NULL PRIMARY KEY
79
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='contains all of IH.vegpath.org?&Index+Herbariorum'
80
EOF
81
) || skip_table || return 0
82
	mysql_ANSI <<EOF
83
INSERT INTO "herbaria_filter"
84
SELECT institution_code FROM plant_fraction_for_herbaria_filter
85
EOF
86
	append=1 mysql_import <"$top_dir"/herbaria_filter.ih.csv_
87
}
88

    
89
herbaria_filter/seal()
90
{
91
	echo_func; set_make_vars
92
	
93
	use_local_remote
94
	table=herbaria_filter table_esc= mysql_seal_table
95
}
96

    
97
func_override table.tsv/make__src_table_run
98
table.tsv/make() # usage: [remake=1] [limit=...] .../run table.tsv/make
99
{
100
	echo_func; set_make_vars
101
	
102
	herbaria_filter/make
103
	filter="
104
deleted IS NULL
105
AND institution_code IN (SELECT * FROM herbaria_filter)" \
106
table.tsv/make__src_table_run
107
}
108

    
109
fi
(7-7/9)