1 |
<?php
|
1 |
<?php
|
2 |
class CelFormateur implements Formateur {
|
2 |
class CelFormateur implements Formateur {
|
3 |
public $dest_map = array();
|
3 |
public $dest_map = array();
|
4 |
public $img = array();
|
4 |
public $img = array();
|
5 |
public function __construct($info) {
|
5 |
public function __construct($info) {
|
6 |
$this->info = $info;
|
6 |
$this->info = $info;
|
7 |
}
|
7 |
}
|
8 |
public function img() {
|
8 |
public function img() {
|
9 |
$qualite = 9;
|
9 |
$qualite = 9;
|
10 |
imagepng($this->img['cel'], Config::get('cache.stockageChemin').$this->dest_map['cel'], $qualite);
|
10 |
imagepng($this->img['cel'], Config::get('cache.stockageChemin').$this->dest_map['cel'], $qualite);
|
11 |
}
|
11 |
}
|
12 |
//+----------------------------------------------------------------------------------------------------------------+
|
12 |
//+----------------------------------------------------------------------------------------------------------------+
|
13 |
// Méthodes d'accès aux objets du Framework
|
13 |
// Méthodes d'accès aux objets du Framework
|
14 |
/**
|
14 |
/**
|
15 |
* Méthode de connection à la base de données sur demande.
|
15 |
* Méthode de connection à la base de données sur demande.
|
16 |
* Tous les services web n'ont pas besoin de s'y connecter.
|
16 |
* Tous les services web n'ont pas besoin de s'y connecter.
|
17 |
*/
|
17 |
*/
|
18 |
protected function getBdd() {
|
18 |
protected function getBdd() {
|
19 |
if (! isset($this->Bdd)) {
|
19 |
if (! isset($this->Bdd)) {
|
20 |
$this->Bdd = new Bdd();
|
20 |
$this->Bdd = new Bdd();
|
21 |
}
|
21 |
}
|
22 |
return $this->Bdd;
|
22 |
return $this->Bdd;
|
23 |
}
|
23 |
}
|
24 |
|
24 |
|
25 |
public function definirCouleurs() {
|
25 |
public function definirCouleurs() {
|
26 |
// green
|
26 |
// green
|
27 |
$couleurs['green'] = imagecolorallocate($this->img['cel'], 0, 255, 0);
|
27 |
$couleurs['green'] = imagecolorallocate($this->img['cel'], 0, 255, 0);
|
28 |
return $couleurs;
|
28 |
return $couleurs;
|
29 |
}
|
29 |
}
|
30 |
public function initialiserImage() {
|
30 |
public function initialiserImage() {
|
31 |
// Nom du fichier image en sortie
|
31 |
// Nom du fichier image en sortie
|
32 |
$this->cheminCartesBase = Config::get('Cartes.chemin');
|
32 |
$this->cheminCartesBase = Config::get('Cartes.chemin');
|
33 |
$this->dest_map['cel'] = 'cel_nt'.$this->info['nt'].'_'.$this->info['src_map'];
|
33 |
$this->dest_map['cel'] = 'cel_nt'.$this->info['nt'].'_'.$this->info['src_map'];
|
34 |
$this->img['cel'] = imagecreatefrompng($this->cheminCartesBase.$this->info['src_map']);
|
34 |
$this->img['cel'] = imagecreatefrompng($this->cheminCartesBase.$this->info['src_map']);
|
35 |
}
|
35 |
}
|
- |
|
36 |
|
- |
|
37 |
public function testerParametresProjets() {
|
- |
|
38 |
$test = true;
|
- |
|
39 |
if ($this->info['nt'] == 0) {
|
- |
|
40 |
$test = false;
|
- |
|
41 |
}
|
- |
|
42 |
return $test;
|
- |
|
43 |
}
|
36 |
|
44 |
|
37 |
public function chargerDonnees() {
|
45 |
public function chargerDonnees() {
|
38 |
// Recherche nom correspondant au numero nomenclatural en cours (pour etablir le lien avec les donnees moissonnes).
|
46 |
// Recherche nom correspondant au numero nomenclatural en cours (pour etablir le lien avec les donnees moissonnes).
|
39 |
|
47 |
|
40 |
// R�cuperation donn�e inventaire
|
48 |
// R�cuperation donn�e inventaire
|
41 |
/*
|
49 |
/*
|
42 |
* Les donnees issues du carnet en ligne sont recuperes directement, sans passer par le mecanisme de moissonage car :
|
50 |
* Les donnees issues du carnet en ligne sont recuperes directement, sans passer par le mecanisme de moissonage car :
|
43 |
* - pour l'instant le service de moissonage n'est pas automatise et donc il y a un decalage dans l'affichage des donnees transmises
|
51 |
* - pour l'instant le service de moissonage n'est pas automatise et donc il y a un decalage dans l'affichage des donnees transmises
|
44 |
* - la table contenant les donnees moissonees ne reprend pas tous les champs necessaires a l'exploitation par eflore (notamment pas de code localite, pas d'identifiant libre)
|
52 |
* - la table contenant les donnees moissonees ne reprend pas tous les champs necessaires a l'exploitation par eflore (notamment pas de code localite, pas d'identifiant libre)
|
45 |
*
|
53 |
*
|
46 |
* A terme, utilser vraiment le moissonage, y compris pour les donnees issues du CEL, en utilisant ABCD et en modifiant le programme d'harvesting.
|
54 |
* A terme, utilser vraiment le moissonage, y compris pour les donnees issues du CEL, en utilisant ABCD et en modifiant le programme d'harvesting.
|
47 |
*/
|
55 |
*/
|
48 |
$queryCel = "SELECT 'cel' as collection_code, location, id_location, date_observation, ".
|
56 |
$queryCel = "SELECT 'cel' as collection_code, location, id_location, date_observation, ".
|
49 |
" coord_y as y_utm, coord_x as x_utm, ref_geo as sector, identifiant FROM tb_cel.cel_inventory ".
|
57 |
" coord_y as y_utm, coord_x as x_utm, ref_geo as sector, identifiant FROM tb_cel.cel_inventory ".
|
50 |
"WHERE num_taxon = '".$this->info['nt']."' ".
|
58 |
"WHERE num_taxon = '".$this->info['nt']."' ".
|
51 |
" AND transmission = 1";
|
59 |
" AND transmission = 1";
|
52 |
$inventoriesCel = $this->getBdd()->recupererTous($queryCel);
|
60 |
$inventoriesCel = $this->getBdd()->recupererTous($queryCel);
|
53 |
return $inventoriesCel;
|
61 |
return $inventoriesCel;
|
54 |
}
|
62 |
}
|
55 |
|
63 |
|
56 |
|
64 |
|
57 |
public function dessinerPoint($text, $merge, $couleurs) {
|
65 |
public function dessinerPoint($text, $merge, $couleurs) {
|
58 |
$usemap['cel'] = '';
|
66 |
$usemap['cel'] = '';
|
59 |
|
67 |
|
60 |
foreach ($text as $coord => $origines ) {
|
68 |
foreach ($text as $coord => $origines ) {
|
61 |
foreach ($origines as $origine => $maptext ) {
|
69 |
foreach ($origines as $origine => $maptext ) {
|
62 |
$maptext = preg_replace("/\"/", "\'", $maptext);
|
70 |
$maptext = preg_replace("/\"/", "\'", $maptext);
|
63 |
|
71 |
|
64 |
list($x,$y) = explode('|', $coord);
|
72 |
list($x,$y) = explode('|', $coord);
|
65 |
|
73 |
|
66 |
$tpl_area = '<area shape="%s" alt="" class="tooltip" coords="%s" title="%s"/>';
|
74 |
$tpl_area = '<area shape="%s" alt="" class="tooltip" coords="%s" title="%s"/>';
|
67 |
$rayon = 2;
|
75 |
$rayon = 2;
|
68 |
$type = 'circle';
|
76 |
$type = 'circle';
|
69 |
$coords = "$x,$y,5";
|
77 |
$coords = "$x,$y,5";
|
70 |
$on_mouseover = "this.ttBgColor='#99C242';this.ttFontColor='#000000';this.T_OFFSETX=-200;this.T_OFFSETY=-50;this.T_STICKY=1;return escape('$maptext')";
|
78 |
$on_mouseover = "this.ttBgColor='#99C242';this.ttFontColor='#000000';this.T_OFFSETX=-200;this.T_OFFSETY=-50;this.T_STICKY=1;return escape('$maptext')";
|
71 |
|
79 |
|
72 |
imagefilledrectangle($this->img['cel'], ($x - $rayon), ($y - $rayon), ($x + $rayon), ($y + $rayon), $couleurs['green']);
|
80 |
imagefilledrectangle($this->img['cel'], ($x - $rayon), ($y - $rayon), ($x + $rayon), ($y + $rayon), $couleurs['green']);
|
73 |
$coords = ($x - $rayon).','.($y - $rayon).','.($x + $rayon).','.($y + $rayon);
|
81 |
$coords = ($x - $rayon).','.($y - $rayon).','.($x + $rayon).','.($y + $rayon);
|
74 |
$usemap['cel'] = $usemap['cel'].sprintf($tpl_area, 'rect', $coords, $maptext);
|
82 |
$usemap['cel'] = $usemap['cel'].sprintf($tpl_area, 'rect', $coords, $maptext);
|
75 |
}
|
83 |
}
|
76 |
}
|
84 |
}
|
77 |
return $usemap;
|
85 |
return $usemap;
|
78 |
}
|
86 |
}
|
79 |
|
87 |
|
80 |
public function formaterCartes($usemap) {
|
88 |
public function formaterCartes($usemap) {
|
81 |
$retour = Config::get('Cartes.cel_dst').$this->dest_map['cel'];
|
89 |
$retour = Config::get('Cartes.cel_dst').$this->dest_map['cel'];
|
82 |
if ($this->info['retour'] == self::MIME_MAP) {
|
90 |
if ($this->info['retour'] == self::MIME_MAP) {
|
83 |
$retour = "<img src=\"".$retour."\" style=\"border:none; ".
|
91 |
$retour = "<img src=\"".$retour."\" style=\"border:none; ".
|
84 |
"cursor:crosshair\" alt=\"\" usemap=\"#themap\" /><br />\n".
|
92 |
"cursor:crosshair\" alt=\"\" usemap=\"#themap\" /><br />\n".
|
85 |
"<map name=\"themap\" id=\"themap\">".utf8_encode($usemap['cel'])."</map>";
|
93 |
"<map name=\"themap\" id=\"themap\">".utf8_encode($usemap['cel'])."</map>";
|
86 |
}
|
94 |
}
|
87 |
return $retour;
|
95 |
return $retour;
|
88 |
}
|
96 |
}
|
89 |
|
97 |
|
90 |
|
98 |
|
91 |
|
99 |
|
92 |
|
100 |
|
93 |
//+----------------------------------------------------------------------------------------------------------------+
|
101 |
//+----------------------------------------------------------------------------------------------------------------+
|
94 |
// sous fonction de calculer répartition
|
102 |
// sous fonction de calculer répartition
|
95 |
public function chercherVille($inventory, $tab_code_insee = array()) {
|
103 |
public function chercherVille($inventory, $tab_code_insee = array()) {
|
96 |
$location_protege = $this->getBdd()->proteger($inventory['location']);
|
104 |
$location_protege = $this->getBdd()->proteger($inventory['location']);
|
97 |
$id_location_protege = $this->getBdd()->proteger($inventory['id_location']);
|
105 |
$id_location_protege = $this->getBdd()->proteger($inventory['id_location']);
|
98 |
$utm = array();
|
106 |
$utm = array();
|
99 |
if ($inventory['id_location'] != 'null') {
|
107 |
if ($inventory['id_location'] != 'null') {
|
100 |
if (isset($tab_code_insee) & in_array($inventory['id_location'], $tab_code_insee)) {
|
108 |
if (isset($tab_code_insee) & in_array($inventory['id_location'], $tab_code_insee)) {
|
101 |
$utm = array(0 => $this->tab_code_insee[$id_location_protege]);
|
109 |
$utm = array(0 => $this->tab_code_insee[$id_location_protege]);
|
102 |
} else {
|
110 |
} else {
|
103 |
$requete = "SELECT * ".
|
111 |
$requete = "SELECT * ".
|
104 |
"FROM tb_cel.locations ".
|
112 |
"FROM tb_cel.locations ".
|
105 |
"WHERE name LIKE $location_protege ".
|
113 |
"WHERE name LIKE $location_protege ".
|
106 |
" AND code = $id_location_protege ";
|
114 |
" AND code = $id_location_protege ";
|
107 |
$resultat = $this->getBdd()->recupererTous($requete);
|
115 |
$resultat = $this->getBdd()->recupererTous($requete);
|
108 |
$utm = $resultat;
|
116 |
$utm = $resultat;
|
109 |
}
|
117 |
}
|
110 |
} else {
|
118 |
} else {
|
111 |
$requete = "SELECT * FROM tb_cel.locations WHERE name LIKE $location_protege ";
|
119 |
$requete = "SELECT * FROM tb_cel.locations WHERE name LIKE $location_protege ";
|
112 |
$utm = $this->getBdd()->recupererTous($requete);
|
120 |
$utm = $this->getBdd()->recupererTous($requete);
|
113 |
}
|
121 |
}
|
114 |
return $utm;
|
122 |
return $utm;
|
115 |
}
|
123 |
}
|
116 |
|
124 |
|
117 |
public function formerCommentaire($utm, $inventory) {
|
125 |
public function formerCommentaire($utm, $inventory) {
|
118 |
$comment = '';
|
126 |
$comment = '';
|
119 |
|
127 |
|
120 |
if ($inventory['date_observation'] != '0000-00-00 00:00:00') {
|
128 |
if ($inventory['date_observation'] != '0000-00-00 00:00:00') {
|
121 |
$comment .= $this->formerDate($inventory);
|
129 |
$comment .= $this->formerDate($inventory);
|
122 |
}
|
130 |
}
|
123 |
|
131 |
|
124 |
list($identifiant) = explode("@", $inventory['identifiant']);
|
132 |
list($identifiant) = explode("@", $inventory['identifiant']);
|
125 |
$comment .= " par ".$identifiant."@...";
|
133 |
$comment .= " par ".$identifiant."@...";
|
126 |
|
134 |
|
127 |
return $comment;
|
135 |
return $comment;
|
128 |
}
|
136 |
}
|
129 |
|
137 |
|
130 |
public function formerDate($inventory) {
|
138 |
public function formerDate($inventory) {
|
131 |
list($year, $month, $day) = explode ('-',$inventory['date_observation']);
|
139 |
list($year, $month, $day) = explode ('-',$inventory['date_observation']);
|
132 |
list($day) = explode (' ',$day);
|
140 |
list($day) = explode (' ',$day);
|
133 |
if ($month == '00') {
|
141 |
if ($month == '00') {
|
134 |
$date = ', en '.$year;
|
142 |
$date = ', en '.$year;
|
135 |
} else {
|
143 |
} else {
|
136 |
$date = ', le '.$day.'/'.$month.'/'.$year;
|
144 |
$date = ', le '.$day.'/'.$month.'/'.$year;
|
137 |
}
|
145 |
}
|
138 |
return $date;
|
146 |
return $date;
|
139 |
}
|
147 |
}
|
140 |
/*
|
148 |
/*
|
141 |
* Stockage commentaire associe a un point :
|
149 |
* Stockage commentaire associe a un point :
|
142 |
*
|
150 |
*
|
143 |
* Param :
|
151 |
* Param :
|
144 |
* @text : texte cumule
|
152 |
* @text : texte cumule
|
145 |
* @merge : indicateur de commentaire fusionne
|
153 |
* @merge : indicateur de commentaire fusionne
|
146 |
* @name : commune associee
|
154 |
* @name : commune associee
|
147 |
* @comment : commentaire
|
155 |
* @comment : commentaire
|
148 |
* @origine : origine de la donnee
|
156 |
* @origine : origine de la donnee
|
149 |
*
|
157 |
*
|
150 |
*
|
158 |
*
|
151 |
* TODO : rendre cette fonction independante des valeurs d'origine passee en parametre
|
159 |
* TODO : rendre cette fonction independante des valeurs d'origine passee en parametre
|
152 |
*/
|
160 |
*/
|
153 |
public function stockerCommentaire($text, $merge, $name, $comment, $origine, $x, $y) {
|
161 |
public function stockerCommentaire($text, $merge, $name, $comment, $origine, $x, $y) {
|
154 |
$prefix = 'CEL : ';
|
162 |
$prefix = 'CEL : ';
|
155 |
|
163 |
|
156 |
// Cumul toute origine :
|
164 |
// Cumul toute origine :
|
157 |
if (isset($text[$x.'|'.$y]['tout']) && ($text[$x.'|'.$y])) {
|
165 |
if (isset($text[$x.'|'.$y]['tout']) && ($text[$x.'|'.$y])) {
|
158 |
$text[$x.'|'.$y]['tout'] = $text[$x.'|'.$y]['tout'].'<br>'.$prefix.$name.$comment;
|
166 |
$text[$x.'|'.$y]['tout'] = $text[$x.'|'.$y]['tout'].'<br>'.$prefix.$name.$comment;
|
159 |
} else {
|
167 |
} else {
|
160 |
// Nouveau commentaire
|
168 |
// Nouveau commentaire
|
161 |
$text[$x.'|'.$y]['tout']=$prefix.$name.$comment;
|
169 |
$text[$x.'|'.$y]['tout']=$prefix.$name.$comment;
|
162 |
}
|
170 |
}
|
163 |
|
171 |
|
164 |
// Deja present pour cette origine ? on ajoute
|
172 |
// Deja present pour cette origine ? on ajoute
|
165 |
if (isset ($text[$x.'|'.$y][$origine]) && ($text[$x.'|'.$y][$origine])) {
|
173 |
if (isset ($text[$x.'|'.$y][$origine]) && ($text[$x.'|'.$y][$origine])) {
|
166 |
$text[$x.'|'.$y][$origine] = $text[$x.'|'.$y][$origine].'<br>'.$name.$comment;
|
174 |
$text[$x.'|'.$y][$origine] = $text[$x.'|'.$y][$origine].'<br>'.$name.$comment;
|
167 |
} else { // Nouveau commentaire
|
175 |
} else { // Nouveau commentaire
|
168 |
$text[$x.'|'.$y][$origine] = $name.$comment;
|
176 |
$text[$x.'|'.$y][$origine] = $name.$comment;
|
169 |
}
|
177 |
}
|
170 |
|
178 |
|
171 |
|
179 |
|
172 |
// Detection superposition de donnee
|
180 |
// Detection superposition de donnee
|
173 |
if ((isset ($text[$x.'|'.$y]['sophy']) && ($text[$x.'|'.$y]['sophy'])) || (isset ($text[$x.'|'.$y]['flore']) && ($text[$x.'|'.$y]['flore']))
|
181 |
if ((isset ($text[$x.'|'.$y]['sophy']) && ($text[$x.'|'.$y]['sophy'])) || (isset ($text[$x.'|'.$y]['flore']) && ($text[$x.'|'.$y]['flore']))
|
174 |
|| (isset ($text[$x.'|'.$y]['FLORE - VAR']) && ($text[$x.'|'.$y]['FLORE - VAR']))) {
|
182 |
|| (isset ($text[$x.'|'.$y]['FLORE - VAR']) && ($text[$x.'|'.$y]['FLORE - VAR']))) {
|
175 |
$merge[$x.'|'.$y]=true;
|
183 |
$merge[$x.'|'.$y]=true;
|
176 |
}
|
184 |
}
|
177 |
return array($text, $merge);
|
185 |
return array($text, $merge);
|
178 |
}
|
186 |
}
|
179 |
|
187 |
|
180 |
|
188 |
|
181 |
|
189 |
|
182 |
}
|
190 |
}
|
183 |
?>
|
191 |
?>
|