-
Notifications
You must be signed in to change notification settings - Fork 0
/
exec.adicionarocorrencia.php
145 lines (130 loc) · 4.5 KB
/
exec.adicionarocorrencia.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php session_start();
error_reporting(E_ALL);
ini_set('display_errors','1');
require_once('classes/experimento.class.php');
require_once('classes/conexao.class.php');
$conexao = new Conexao;
$conn = $conexao->Conectar();
$Experimento = new Experimento();
$Experimento->conn = $conn;
$idexperimento = $_REQUEST['id'];
$especie = $_REQUEST['edtespecie'];
$fontedados = isset($_REQUEST['fontebiotico']) ? $_REQUEST['fontebiotico'][0] : NULL;
$Experimento->getById($idexperimento);
$bool_automaticfilter = $_REQUEST['filtro'];
$box = $_POST['chtestemunho'];
$jabotData = [];
$gbifData = [];
while (list ($key,$val) = @each($box)) {
if(is_numeric ($val)){
array_push($jabotData,$val);
} else {
array_push($gbifData,$val);
}
}
// s
$bool_automaticfilter = $bool_automaticfilter === 'true'? true: false;
$Experimento->incluirAutomaticFilter($idexperimento, $_REQUEST['filtro']);
//if ($fontedados==1)
//{
$sql = "select numtombo,taxoncompleto,codtestemunho,coletor,numcoleta,latitude,longitude,pais,estado_prov as estado,cidade as municipio, siglacolecao as herbario, descrlocal as localidade
from publicacao.extracao_jabot_geral where familia || ' ' || taxoncompleto ilike '%".$especie."%' and ";
$box=$jabotData;
$in = 'extracao_jabot_geral.codtestemunho in (';
while (list ($key,$val) = @each($box)) {
//$result = $Cobertura->excluir($val);
$in .= $val.',';
}
$in.='0)';
$sql.= $in;
//echo $sql;
//exit;
$res = pg_exec($conn,$sql);
while ($row = pg_fetch_array($res))
{
$codigobarras= str_pad($row['codtestemunho'], 8, "0", STR_PAD_LEFT);
$lat = str_replace("'","`",$row['latitude']);
$long = str_replace("'","`",$row['longitude']);
$taxon = str_replace("'","`",$row['taxoncompleto']);
$herbario = str_replace("'","`",$row['herbario']);
$coletor = str_replace("'","`",$row['coletor']);
$numcoleta = str_replace("'","`",$row['numcoleta']);
$pais = str_replace("'","`",$row['pais']);
$estado = str_replace("'","`",$row['estado']);
$municipio = str_replace("'","`",$row['municipio']);
$tombo = str_replace("'","`",$row['numtombo']);
$codtestemunho = str_replace("'","`",$row['codtestemunho']);
// echo $pais.','.$estado.','.$municipio;
// exit;
$sqlimagem = "select * from jabot.imagem where codigobarras = '".$codigobarras."' limit 1";
$resimagem = pg_exec($conn,$sqlimagem);
$rowimagem = pg_fetch_array($resimagem);
$imagemservidor = $rowimagem ['servidor'];
$imagemcaminho = $rowimagem ['path'];
$imagemarquivo = $rowimagem ['arquivo'];
$localidade = $row ['localidade'];
$Experimento->adicionarOcorrencia($idexperimento,$fontedados,$lat,$long,$taxon,$coletor,$numcoleta,$imagemservidor,$imagemcaminho,$imagemarquivo,$pais,$estado,$municipio, $herbario,$tombo,$codtestemunho,'Jabot',$localidade);
}
//}
//if ($fontedados==2)
//{ // gbif
$box=$gbifData;
// print_r($box);
// exit;
$in = 'extracao_jabot_geral.codtestemunho in (';
while (list ($key,$val) = @each($box)) {
//$result = $Cobertura->excluir($val);
$val = explode("*", $val);
// print_r($val);
// echo '<br>';
$idexperimento = $val[0];
$fontedados = $val[1];
$latitude = $val[2];
$longitude = $val[3];
$taxon = str_replace("'","`",$val[4]);
$coletor = str_replace("'","",$val[5]);
if($val[6] != 'undefined'){
$numcoleta = str_replace("'","`",$val[6]);
} else {
$numcoleta = null;
}
$imagemservidor=$val[7];
$imagemcaminho=$val[8];
$imagemarquivo=$val[9];
$pais= str_replace("'","`",$val[10]);
$estado = str_replace("'","`",$val[11]);
$municipio=str_replace("'","",$val[12]);
$herbario= str_replace("'","`",$val[13]);
//var_dump($val[14]);
//echo '<br>';
if(isset($val[14])){
if ($val[14] == 'undefined' || $val[14] == ''){
$tombo = 'null';
} else {
$tombo = str_replace("'","`",$val[14]);
}
} else {
$tombo = 'null';
}
if(isset($val[15])){
$localidade= $val[15] ? str_replace("'","`",$val[15]) : '';
}
if(empty($herbario)){
$fonte = 'CSV';
} else if($fontedados == 4) {
$fonte = 'HV';
} else if($fontedados == 5) {
$fonte = 'SpeciesLink';
}
else {
$fonte = 'GBIF';
}
$Experimento->adicionarOcorrencia($idexperimento,$fontedados,$latitude,$longitude,$taxon,$coletor,$numcoleta,$imagemservidor,$imagemcaminho,$imagemarquivo,$pais,$estado,$municipio,$herbario,$tombo,0,$fonte,$localidade);
}
//}
if($bool_automaticfilter === true){
header("Location: exec.atualizarpontos.php?idstatus=99&idponto=&latinf=&longinf=&id=$idexperimento");
} else {
header("Location: cadexperimento.php?op=A&tab=10&MSGCODIGO=71&id=$idexperimento");
}
?>