Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 349 | Rev 773 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
11 jpm 1
<?php
771 delphine 2
// /opt/lampp/bin/php cli.php chorodep -a chargerVersions
242 jpm 3
class Chorodep extends EfloreScript {
11 jpm 4
	protected $nbre_dep = 0;
5
	private $type_donnee = '';
6
	protected $aso_num_nomenc = array();
7
	protected $nbre_ligne = 0;
8
	protected $nbre_plte_presente = 0;
9
	protected $nbre_plte_a_confirmer = 0;
10
	protected $nbre_plte_douteux = 0;
11
	protected $nbre_plte_erreur = 0;
12
	protected $nbre_plte_disparue = 0;
242 jpm 13
	protected $nbre_plte_erreur_a_confirmer = 0;
11 jpm 14
	protected $nc_autres_valeur_champ = 0;
242 jpm 15
	protected $nc_nbre_plte_presente = 0;
16
	protected $nc_nbre_plte_a_confirmer = 0;
17
	protected $nc_nbre_plte_douteux = 0;
18
	protected $nc_nbre_plte_disparue = 0;
19
	protected $nc_nbre_plte_erreur = 0;
20
	protected $nc_nbre_plte_erreur_a_confirmer = 0;
21
 
11 jpm 22
	protected $aso_totaux_dep = array();
242 jpm 23
	private $fichier_verif = './chorodep_verif.html';
11 jpm 24
 
242 jpm 25
	public function executer() {
26
		try {
27
			$this->initialiserProjet('chorodep');
11 jpm 28
 
242 jpm 29
			// Lancement de l'action demandée
30
			$cmd = $this->getParametre('a');
31
			switch ($cmd) {
32
 
33
				case 'chargerTous' :
34
					$this->chargerStructureSql();
35
					$this->chargerVersions();
36
					$this->chargerChorodepContributeurs();
37
					$this->chargerChorodepSources();
38
					$this->chargerChorodepOntologies();
39
					break;
40
				case 'chargerStructureSql' :
41
					$this->chargerStructureSql();
42
					break;
43
				case 'chargerVersions' :
44
					$this->chargerVersions();
45
					break;
46
				case 'chargerChorodep' :
47
					$this->chargerChorodepContributeurs();
48
					$this->chargerChorodepSources();
49
					$this->chargerChorodepOntologies();
50
					break;
51
				case 'verifierDonnees' :
52
					$this->initialiserTraitement();
53
					$this->verifierDonnees();
54
					break;
55
				case 'supprimerTous' :
56
					$this->supprimerTous();
57
					break;
58
				default :
59
					throw new Exception("Erreur : la commande '$cmd' n'existe pas!");
60
			}
61
		} catch (Exception $e) {
62
			$this->traiterErreur($e->getMessage());
63
		}
11 jpm 64
	}
65
 
242 jpm 66
	private function chargerChorodepContributeurs() {
67
		$chemin = Config::get('chemins.chorodepContributeurs');
68
		$table = Config::get('tables.chorodepContributeurs');
69
		$requete = "LOAD DATA INFILE '$chemin' ".
70
						"REPLACE INTO TABLE $table ".
71
						'CHARACTER SET utf8 '.
72
						'FIELDS '.
73
						"	TERMINATED BY '\t' ".
74
						"	ENCLOSED BY '' ".
75
						"	ESCAPED BY '\\\' ".
76
						'IGNORE 2 LINES';
77
		$this->getBdd()->requeter($requete);
78
	}
11 jpm 79
 
242 jpm 80
	private function chargerChorodepSources() {
81
		$chemin = Config::get('chemins.chorodepSources');
82
		$table = Config::get('tables.chorodepSources');
83
		$requete = "LOAD DATA INFILE '$chemin' ".
84
							"REPLACE INTO TABLE $table ".
85
							'CHARACTER SET utf8 '.
86
							'FIELDS '.
87
							"	TERMINATED BY '\t' ".
88
							"	ENCLOSED BY '' ".
89
							"	ESCAPED BY '\\\' ".
90
							'IGNORE 2 LINES';
91
		$this->getBdd()->requeter($requete);
92
	}
11 jpm 93
 
242 jpm 94
	private function chargerChorodepOntologies() {
95
		$chemin = Config::get('chemins.chorodepOntologies');
96
		$table = Config::get('tables.chorodepOntologies');
97
		$requete = "LOAD DATA INFILE '$chemin' ".
98
								"REPLACE INTO TABLE $table ".
99
								'CHARACTER SET utf8 '.
100
								'FIELDS '.
101
								"	TERMINATED BY '\t' ".
102
								"	ENCLOSED BY '' ".
103
								"	ESCAPED BY '\\\' ".
104
								'IGNORE 1 LINES';
105
		$this->getBdd()->requeter($requete);
11 jpm 106
	}
107
 
242 jpm 108
	private function chargerVersions() {
109
		$versions = explode(',', Config::get('versions'));
110
		$versionsDonnees = explode(',', Config::get('versionsDonnees'));
111
		foreach ($versions as $id => $version) {
112
			$versionDonnees = $versionsDonnees[$id];
113
			$this->chargerStructureSqlVersion($versionDonnees);
114
			$this->chargerDonneesVersion($versionDonnees, $version);
11 jpm 115
		}
116
	}
242 jpm 117
 
118
	private function chargerStructureSqlVersion($versionDonnees) {
249 jpm 119
		$fichierSqlTpl = Config::get('chemins.structureSqlVersionTpl');
242 jpm 120
		$fichierSql = sprintf($fichierSqlTpl, $versionDonnees, $versionDonnees);
121
		$contenuSql = $this->recupererContenu($fichierSql);
122
		$this->executerScripSql($contenuSql);
123
	}
124
 
125
	private function chargerDonneesVersion($versionDonnees, $version) {
249 jpm 126
		$fichierTsvTpl = Config::get('chemins.chorodepTpl');
242 jpm 127
		$fichierTsv = sprintf($fichierTsvTpl, $versionDonnees, $versionDonnees);
249 jpm 128
		$tableTpl = Config::get('tables.chorodepTpl');
242 jpm 129
		$table = sprintf($tableTpl, $version);
130
		$champs = Config::get('chorodepChamps');
131
		$requete = "LOAD DATA INFILE '$fichierTsv' ".
132
						"REPLACE INTO TABLE $table ".
133
						'CHARACTER SET utf8 '.
134
						'FIELDS '.
135
						"	TERMINATED BY '\t' ".
136
						"	ENCLOSED BY '' ".
137
						"	ESCAPED BY '\\\' ".
138
						'IGNORE 1 LINES '.
139
						"($champs) ";
140
		$this->getBdd()->requeter($requete);
141
	}
142
 
11 jpm 143
	private function initialiserTraitement() {
144
		//------------------------------------------------------------------------------------------------------------//
145
		// Récupération des informations à vérifier
242 jpm 146
		$table = $this->getNomTableDernierVersion();
11 jpm 147
		$requete = 	'SELECT * '.
242 jpm 148
					"FROM $table ";
149
		$taxons = $this->getBdd()->recupererTous($requete);
11 jpm 150
		$tax_col = $taxons[1];
151
		$col = array_keys($tax_col);
152
		$this->initialiserTableaux($col);
153
		//------------------------------------------------------------------------------------------------------------//
154
		// Analyse des données
155
		echo 'Traitement de la ligne n° :';
156
		$i = 0;
157
		$j = 0;
158
		$aso_departements_analyses = array();
159
		$this->nbre_ligne_avec_guillemet = 0;
160
		foreach ($taxons as $aso_champs) {
161
			$nom = $aso_champs['nom_sci'];
162
			$num_taxo = $aso_champs['num_tax'];
163
			$num_nomenc = $aso_champs['num_nom'];
164
			if ($num_nomenc == 'nc') {
165
				$this->nc_nbre_nom++;
166
			} else if ($num_nomenc != 'nc') {
167
				$this->nbre_nom++;
168
				// Vérification de la nom duplication des numéros nomenclaturaux
169
				if ( !array_key_exists($num_nomenc, (array) $this->aso_num_nomenc) ) {
170
					$this->aso_num_nomenc[$num_nomenc]['compteur'] = 1;
171
					$this->aso_num_nomenc[$num_nomenc]['ligne'] = ($this->nbre_ligne+1);
172
				} else {
173
					$this->aso_num_nomenc[$num_nomenc]['compteur']++;
174
					$this->aso_num_nomenc[$num_nomenc]['ligne'] .= ' - '.($this->nbre_ligne+1);
175
				}
176
			}
177
			foreach ($aso_champs as $cle => $val ) {# Pour chaque département du taxon, on regarde la valeur
178
				$this->nbre_ligne_avec_guillemet += preg_match('/"/', $val);
179
				if ( preg_match('/^\d{2}$/', $cle) ) {# Nous vérifions que le nom du champs comprend bien le numéro du département entre ()
180
					$nd = $cle;# Numéro du département
181
					// Nous comptons le nombre de département en base de données
182
					if (!isset($aso_departements_analyses[$nd])) {
183
						$this->nbre_dep_analyse++;
184
						$aso_departements_analyses[$nd] = $nd;
185
					}
186
					if ( $num_nomenc != 'nc' && isset($val) && $val != '') {# Si le taxon n'est pas abscent du département
187
						if ($val == '1') {# Présent
188
							// Calcul du nombre de plante ayant un statut "Présent"
189
							$this->nbre_plte_presente++;
190
							// Stockage par département du nombre de plante ayant un statut "Présent"
191
							$this->aso_totaux_dep[$nd]['plte_presente']++;
192
							// Stockage des informations
193
							$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 3, $this->id_donnee_choro++);
194
						} else if ($val == '1?') {# Présence à confirmer
195
							// Calcul du nombre de plante ayant un statut "Présence à confirmer"
196
							$this->nbre_plte_a_confirmer++;
197
							// Stockage par département du nombre de plante ayant un statut "Présence à confirmer"
198
							$this->aso_totaux_dep[$nd]['plte_a_confirmer']++;
199
							// Stockage des informations
200
							$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 4, $this->id_donnee_choro++);
201
						} else if (preg_match('/^\s*(?:\?)\s*$/', $val)) {# Douteux
202
							// Calcul du nombre de plante ayant un statut "Disparu ou douteux"
203
							$this->nbre_plte_douteux++;
204
							// Stockage par département du nombre de plante ayant un statut "Douteux"
205
							$this->aso_totaux_dep[$nd]['plte_douteux']++;
206
							// Stockage des informations
207
							$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 5, $this->id_donnee_choro++);
208
							if (preg_match('/(?: \?|\? | \? )/', $val)) {# Douteux
209
								// Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "?".
210
								$this->autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
211
														' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
212
							}
213
						} elseif (preg_match('/^\s*(?:#)\s*$/', $val)) {# Erreur
214
	                        # Calcul du nombre de plante ayant un statut "Erreur"
215
	                        $this->nbre_plte_erreur++;
216
	                        # Stockage par département du nombre de plante ayant un statut "Erreur"
217
	                        $this->aso_totaux_dep[$nd]['plte_erreur']++;
218
	                        # Stockage des informations
219
	                        $this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 6, $this->id_donnee_choro++);
220
	                        if (preg_match('/(?: #|# | # )/', $val)) {# Erreur avec espace
221
	                            # Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#".
222
	                            $autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
223
	                                                    ' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
224
	                        }
225
                    	} elseif (preg_match('/^\s*(?:-\|-)\s*$/', $val)) {# Disparu
226
	                        # Calcul du nombre de plante ayant un statut "Disparu"
227
	                        $this->nbre_plte_disparue++;
228
	                        # Stockage par département du nombre de plante ayant un statut "Disparu"
229
	                        $this->aso_totaux_dep[$nd]['plte_disparue']++;
230
	                        # Stockage des informations
231
	                        $this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 6, $this->id_donnee_choro++);
232
	                        if (preg_match('/(?: -\|-|-\|- | -\|- )/', $val)) {# Disparu avec espace
233
	                            # Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "-|-".
234
	                            $autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
235
	                                                    ' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
236
	                        }
242 jpm 237
                    	} elseif (preg_match('/^\s*(?:#\?)\s*$/', $val)) {# Erreur à confirmer
238
	                        # Calcul du nombre de plante ayant un statut "Erreur à confirmer"
239
	                        $this->nbre_plte_erreur_a_confirmer++;
240
	                        # Stockage par département du nombre de plante ayant un statut "Erreur à confirmer"
241
	                        $this->aso_totaux_dep[$nd]['plte_erreur_a_confirmer']++;
242
	                        # Stockage des informations
243
	                        $this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 6, $this->id_donnee_choro++);
244
                    		if (preg_match('/^(?:\s+#\?|#\?\s+|\s+#\?\s+)$/', $val)) {# Erreur à confirmer avec espace
245
	                            # Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#?".
246
	                            $autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
247
	                                                    ' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
248
	                        }
11 jpm 249
                    	} else {
250
							// Ajout de la valeur dans une variable car elle n'est pas conforme.
251
							$this->autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
252
													' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
253
						}
254
						$j++;
255
					} else if (isset($val) && $val != '') {
256
						if ($val == '1') {# Présent
257
							// Calcul du nombre de plante 'nc' ayant un statut "Présent"
258
							$this->nc_nbre_plte_presente++;
259
							// Stockage par département du nombre de plante 'nc' ayant un statut "Présent"
260
							$this->aso_totaux_dep[$nd]['nc_plte_presente']++;
261
						} elseif ($val == '1?') {# Présence à confirmer
262
							// Calcul du nombre de plante 'nc' ayant un statut "Présence à confirmer"
263
							$this->nc_nbre_plte_a_confirmer++;
264
							// Stockage par département du nombre de plante 'nc' ayant un statut "Présence à confirmer"
265
							$this->aso_totaux_dep[$nd]['nc_plte_a_confirmer']++;
266
						} elseif (preg_match('/^(?:\?| \?|\? | \?)$/', $val)) {# Douteux
267
							// Calcul du nombre de plante 'nc' ayant un statut "Douteux"
268
							$this->nc_nbre_plte_douteux++;
269
							// Stockage par département du nombre de plante 'nc' ayant un statut "Douteux"
270
							$this->aso_totaux_dep[$nd]['nc_plte_douteux']++;
271
							if (preg_match('/(?: \?|\? | \? )/', $val)) {# Douteux
272
								// Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "?".
273
								$this->nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
274
														' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
275
							}
276
						} elseif (preg_match('/^(?:#| #|# | # )$/', $val)) {# Erreur
277
	                        # Calcul du nombre de plante 'nc' ayant un statut "Erreur"
278
	                        $this->nc_nbre_plte_erreur++;
279
	                        # Stockage par département du nombre de plante 'nc' ayant un statut "Erreur"
280
	                        $this->aso_totaux_dep[$nd]['nc_plte_erreur']++;
281
	                        if (preg_match('/(?: #|# | # )/', $val)) {# Erreur avec espace
282
	                            # Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#".
283
	                            $nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
284
	                                                    ' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
285
	                        }
286
                    	} elseif (preg_match('/^\s*(?:-\|-)\s*$/', $val)) {# Disparu
287
	                        # Calcul du nombre de plante 'nc' ayant un statut "Disparu"
288
	                        $this->nc_nbre_plte_disparue++;
289
	                        # Stockage par département du nombre de plante 'nc' ayant un statut "Disparu"
290
	                        $this->aso_totaux_dep[$nd]['nc_plte_disparue']++;
291
	                        if (preg_match('/(?: -\|-|-\|- | -\|- )/', $val)) {# Disparu avec espace
292
	                            # Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "-|-".
293
	                            $nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
294
	                                                    ' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
295
	                        }
242 jpm 296
                    	} elseif (preg_match('/^\s*(?:#\?)\s*$/', $val)) {# Erreur à confirmer
297
	                        # Calcul du nombre de plante 'nc' ayant un statut "Erreur à confirmer"
298
	                        $this->nc_nbre_plte_erreur_a_confirmer++;
299
	                        # Stockage par département du nombre de plante 'nc' ayant un statut "Erreur à confirmer"
300
	                        $this->aso_totaux_dep[$nd]['nc_plte_erreur_a_confirmer']++;
301
	                        if (preg_match('/^(?:\s+#\?|#\?\s+|\s+#\?\s+)$/', $val)) {# Erreur à confirmer avec espace
302
	                            # Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#?".
303
	                            $nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
304
	                                                    ' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
305
	                        }
11 jpm 306
                    	} else {
307
							// Ajout de la valeur dans une variable car elle n'est pas conforme.
308
							$this->nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
309
													' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
310
						}
311
					}
312
					// Affichage dans la console du numéro de l'enregistrement analysé.
313
					//echo str_repeat(chr(8), ( strlen( $i ) + 1 ))."\t".$i++;
314
				}
315
			}// fin du foreach
316
			// Affichage dans la console du numéro de l'enregistrement analysé.
317
			echo str_repeat(chr(8), ( strlen( $this->nbre_ligne ) + 1 ))."\t".$this->nbre_ligne++;
318
		}
319
		echo "\n";
320
	}
321
 
242 jpm 322
	private function initialiserTableaux($dep) {
323
		foreach ($dep as $code_dep) {
324
			if ( preg_match('/^\d{2}$/', $code_dep) ) {
325
				$this->aso_totaux_dep[$code_dep]['plte_presente'] = 0;
326
				$this->aso_totaux_dep[$code_dep]['plte_a_confirmer'] = 0;
327
				$this->aso_totaux_dep[$code_dep]['plte_douteux'] = 0;
328
				$this->aso_totaux_dep[$code_dep]['plte_erreur'] = 0;
329
				$this->aso_totaux_dep[$code_dep]['plte_disparue'] = 0;
330
				$this->aso_totaux_dep[$code_dep]['plte_erreur_a_confirmer'] = 0;
331
				$this->aso_totaux_dep[$code_dep]['autres_valeur_champ'] = 0;
332
				$this->aso_totaux_dep[$code_dep]['nc_plte_presente'] = 0;
333
				$this->aso_totaux_dep[$code_dep]['nc_plte_a_confirmer'] = 0;
334
				$this->aso_totaux_dep[$code_dep]['nc_plte_douteux'] = 0;
335
				$this->aso_totaux_dep[$code_dep]['nc_plte_erreur'] = 0;
336
				$this->aso_totaux_dep[$code_dep]['nc_plte_disparue'] = 0;
337
				$this->aso_totaux_dep[$code_dep]['nc_plte_erreur_a_confirmer'] = 0;
338
				$this->aso_totaux_dep[$code_dep]['nc_autres_valeur_champ'] = 0;
339
			}
340
		}
341
	}
342
 
343
	private function verifierDonnees() {
11 jpm 344
		// Ouverture du fichier contenant les résultats (sortie)
345
		if (!$handle = fopen($this->fichier_verif, 'w')) {
346
			echo "Impossible d'ouvrir le fichier ($this->fichier_verif)";
347
			exit;
348
		}
349
 
350
		// Création de la page
351
		$page = '<html>'."\n";
352
		$page .= '<head>'."\n";
242 jpm 353
		$page .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'."\n";
11 jpm 354
		$page .= '<title>RESULTAT DE LA VERIFICATION DU FICHIER TABULE DE LA CHOROLOGIE</title>'."\n";
355
		$page .= '</head>'."\n";
356
		$page .= '<body>'."\n";
357
		$page .= '<h1>RESULTAT DE LA VERIFICATION DU FICHIER TABULE DE LA CHOROLOGIE</h1>'."\n";
358
		$page .= '<hr/>'."\n";
359
		$page .= 	'<p>'.
360
						'Adresse fichier analysé : '.'<br />'."\n".
361
						'</p>'."\n";
362
		$page .= '<hr/>'."\n";
363
		$page .= '<h2>RESULTATS PROGRAMME DE VERIFICATION</h2>'."\n";
364
		$page .= 	'<p>'.
365
						'Nom du programme générant ce fichier : '.__FILE__.'<br />'."\n".
366
						'Nombre de lignes analysées : '.$this->nbre_ligne.'<br />'."\n".
367
						'Nbre de départements analysés : '.$this->nbre_dep_analyse.'<br />'."\n".
242 jpm 368
						'Date d\'exécution du programme : '.date('d.m.Y').'<br />'."\n".
11 jpm 369
						'</p>'."\n";
370
		$page .= '<hr/>'."\n";
371
		$page .= '<h2>RESULTATS ANALYSE CHOROLOGIE</h2>'."\n";
372
		$page .= 	'<p>'.
373
						'Nombre de nom "nc" : '.$this->nc_nbre_nom.'<br />'."\n".
374
						'Nombre de nom : '.$this->nbre_nom.'<br />'."\n".
242 jpm 375
						'Valeurs autres que 1, 1?, ?, #, #? et -|- : '.$this->autres_valeur_champ.'<br />'."\n".
376
						'Valeurs autres que 1, 1?, ?, #, #? et -|- pour les plantes nc : <br />'."\n".$this->nc_autres_valeur_champ.'</br>'."\n".
11 jpm 377
						'</p>'."\n";
378
		$page .= '<hr/>'."\n";
379
		$page .= '<h2>RESULTATS ANALYSE des CHAMPS</h2>'."\n";
380
		$page .= 	'<p>'.
381
						'Nombre de guillemets antislashés: '.$this->nbre_ligne_avec_guillemet.'<br />'."\n".
382
						'</p>'."\n";
383
		$page .= '<hr/>'."\n";
384
		$page .= '<h2>TABLEAUX</h2>'."\n";
385
 
386
		// Tableau des numéros nomenclaturaux dupliqués
387
		$table = '<table><thead><tr><th colspan="3">Tableau des numéros nomenclaturaux dupliqués </th></tr>';
388
		$table .= '<tr><th>Numéro nomenclatural</th><th>Nbre d\'itération</th><th>Lignes</th></tr></thead>';
389
		$afficher_tab_num_duplique = 0;
390
		ksort($this->aso_num_nomenc);
391
		$table .= '<tbody style="text-align: center;">';
392
		foreach ($this->aso_num_nomenc as $cle_nomenc => $val ) {
393
			$ligne = '<tr><td>'.$cle_nomenc.'</td><td>'.$val['compteur'].'</td><td>'.$val['ligne'].'</td></tr>';
394
			if ($val['compteur'] > 1) {
395
				$table .= $ligne;
396
				$afficher_tab_num_duplique = 1;
397
			}
398
		}
399
		if ( $afficher_tab_num_duplique == 1 ) {
400
			$page .= $table.'</tbody></table>';
401
		}
402
 
403
		// Tableau des résultats par départements
242 jpm 404
		$table = '<table><thead><tr><th colspan="14">Tableau des résulats par départements</th></tr>';
11 jpm 405
		$table .= '<tr><th>Département</th><th>Nbre pltes présentes</th><th>Nbre pltes à confirmer</th>'.
242 jpm 406
			'<th>Nbre pltes douteuses</th><th>Nbre pltes disparues</th><th>Nbre pltes erreur</th><th>Nbre pltes erreur à confirmer</th>'.
11 jpm 407
			'<th>Total</th><th>Nbre pltes nc présentes</th><th>Nbre pltes nc à confirmer</th>'.
242 jpm 408
			'<th>Nbre nc pltes douteuses</th><th>Nbre nc pltes disparues</th><th>Nbre nc pltes erreur</th><th>Nbre nc pltes erreur à confirmer</th></tr></thead>';
11 jpm 409
		$table .= '<tbody style="text-align: center;">';
410
		ksort($this->aso_totaux_dep);
411
		foreach ($this->aso_totaux_dep as $cle_dep => $val ) {
242 jpm 412
			$plt_total = $val{'plte_presente'} + $val{'plte_a_confirmer'} + $val{'plte_douteux'} + $val{'plte_disparue'} + $val{'plte_erreur'} + $val{'plte_erreur_a_confirmer'};
11 jpm 413
			$table .= '<tr><td>'.ZgFrDepartements::getNom($cle_dep).' ('.ZgFrDepartements::getIdChaine($cle_dep).') </td>'.
414
				'<td>'.$val{'plte_presente'}.'</td><td>'.$val{'plte_a_confirmer'}.'</td><td>'.$val{'plte_douteux'}.'</td>'.
242 jpm 415
				'<td>'.$val{'plte_disparue'}.'</td><td>'.$val{'plte_erreur'}.'</td><td>'.$val{'plte_erreur_a_confirmer'}.'</td><td>'.$plt_total.'</td>'.
11 jpm 416
				'<td>'.$val{'nc_plte_presente'}.'</td><td>'.$val{'nc_plte_a_confirmer'}.'</td><td>'.$val{'nc_plte_douteux'}.'</td>'.
242 jpm 417
				'<td>'.$val{'nc_plte_disparue'}.'</td><td>'.$val{'nc_plte_erreur'}.'</td><td>'.$val{'nc_plte_erreur_a_confirmer'}.'</td></tr>';
11 jpm 418
		}
419
 
242 jpm 420
		$table .= '<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>'.
421
				'<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>';
422
		$plt_total = $this->nbre_plte_presente + $this->nbre_plte_a_confirmer + $this->nbre_plte_douteux + $this->nbre_plte_disparue + $this->nbre_plte_erreur + $this->nbre_plte_erreur_a_confirmer;
11 jpm 423
		$table .= '<tr><td>Totaux : '.$this->nbre_dep_analyse.' départements</td><td>'.$this->nbre_plte_presente.'</td>'.
424
			'<td>'.$this->nbre_plte_a_confirmer.'</td><td>'.$this->nbre_plte_douteux.'</td><td>'.$this->nbre_plte_disparue.'</td>'.
242 jpm 425
			'<td>'.$this->nbre_plte_erreur.'</td><td>'.$this->nbre_plte_erreur_a_confirmer.'</td><td>'.$plt_total.'</td>'.
11 jpm 426
			'<td>'.$this->nc_nbre_plte_presente.'</td>'.'<td>'.$this->nc_nbre_plte_a_confirmer.'</td>'.
242 jpm 427
			'<td>'.$this->nc_nbre_plte_douteux.'</td><td>'.$this->nc_nbre_plte_disparue.'</td><td>'.$this->nc_nbre_plte_erreur.'</td><td>'.$this->nc_nbre_plte_erreur_a_confirmer.'</td></tr>';
11 jpm 428
 
429
		$table .= '<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>'.
430
				'<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>';
242 jpm 431
		$total_nbre_plte = ($this->nbre_plte_presente + $this->nbre_plte_a_confirmer + $this->nbre_plte_douteux + $this->nbre_plte_disparue + $this->nbre_plte_erreur + $this->nbre_plte_erreur_a_confirmer);
432
		$total_nbre_plte_nc = ($this->nc_nbre_plte_presente + $this->nc_nbre_plte_a_confirmer + $this->nc_nbre_plte_douteux + $this->nc_nbre_plte_disparue + $this->nc_nbre_plte_erreur + $this->nc_nbre_plte_erreur_a_confirmer);
433
		$table .= '<tr><td>Totaux plante / plante nc</td><td colspan="7">'.$total_nbre_plte.'</td>'.
434
			'<td colspan="6">'.$total_nbre_plte_nc.'</td></tr>';
11 jpm 435
 
242 jpm 436
		$table .= '<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>'.
437
				'<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>';
11 jpm 438
		$plt_total = $this->nbre_plte_presente + $this->nc_nbre_plte_presente + $this->nc_nbre_plte_a_confirmer + $this->nbre_plte_a_confirmer;
242 jpm 439
		$table .= '<tr><td>Total plantes présentes et à confirmer</td><td colspan="13">'.$plt_total.'</td></tr>';
11 jpm 440
 
242 jpm 441
		$table .= '<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>'.
442
				'<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>';
11 jpm 443
		$plt_total = $this->nbre_plte_presente + $this->nc_nbre_plte_presente;
242 jpm 444
		$table .= '<tr><td>Total plantes présentes</td><td colspan="13">'.$plt_total.'</td></tr>';
11 jpm 445
 
242 jpm 446
		$table .= '<tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>'.
447
				'<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>';
11 jpm 448
		$plt_total = $total_nbre_plte + $total_nbre_plte_nc;
242 jpm 449
		$table .= '<tr><td>Total données chorologiques</td><td colspan="13">'.$plt_total.'</td></tr>';
11 jpm 450
 
451
		$table .= '</tbody></table>';
452
		$page .= $table;
453
 
454
		$page .= '<hr/>'."\n";
455
		$page .= '<h2>NOTES</h2>'."\n";
456
		$page .= 	'<p>'.
457
						'1.- Chaque champ précédé par "ATTENTION" doit être vide.'."\n".
458
						'S\'il ne l\'est pas, il y a une erreur'."\n".
459
						'</p>'."\n";
460
		$page .= '</body>'."\n";
461
		$page .= '</html>'."\n";
462
		// Fermeture de la poignée sur le fichier de sortie
463
		if (fwrite($handle, $page) === FALSE) {
464
			echo "Impossible d'écrire dans le fichier ($this->fichier_verif)";
465
			exit;
466
		}
467
		echo 'Ecriture du fichier de vérification de la chorologie réalisée!'."\n";
468
		fclose($handle);
469
	}
470
 
242 jpm 471
	private function supprimerTous() {
472
		$tablesChorodep = implode(',', $this->getNomsTablesChorodep());
473
		$tableContributeurs = Config::get('tables.chorodepContributeurs');
474
		$tableSources = Config::get('tables.chorodepSources');
475
		$tableOntologies = Config::get('tables.chorodepOntologies');
349 jpm 476
		$requete = "DROP TABLE IF EXISTS chorodep_meta, $tablesChorodep, $tableContributeurs, $tableSources, $tableOntologies ";
242 jpm 477
		$this->getBdd()->requeter($requete);
478
	}
479
 
480
	private function getNomsTablesChorodep() {
481
		$versions = explode(',', Config::get('versions'));
482
		$tableTpl = Config::get('tables.chorodepTpl');
483
		$tablesChorodep = array();
484
		foreach ($versions as $version) {
485
			$tablesChorodep[] = sprintf($tableTpl, $version);
486
		}
487
		return $tablesChorodep;
488
	}
489
 
490
	private function getNomTableDernierVersion() {
491
		$version = $this->getDerniereVersion();
492
		$table = sprintf(Config::get('tables.chorodepTpl'), $version);
493
		return $table;
494
	}
495
 
496
	private function getDerniereVersion() {
497
		$version = array_pop(explode(',', Config::get('versions')));
498
		return $version;
499
	}
11 jpm 500
}
501
 
502
class ZgFrDepartements {
503
	static private $departements =
504
        array(
505
        "01" => array("Ain", "01", 1),
506
        "02" => array("Aisne", "02", 2),
507
        "03" => array("Allier", "03", 3),
508
        "04" => array("Alpes-de-Haute-Provence", "04", 4),
509
        "05" => array("Hautes-Alpes", "05", 5),
510
        "06" => array("Alpes-Maritimes", "06", 6),
511
        "07" => array("Ardèche", "07", 7),
512
        "08" => array("Ardennes", "08", 8),
513
        "09" => array("Ariège", "09", 9),
514
        "10" => array("Aube", "10", 10),
515
        "11" => array("Aude", "11", 11),
516
        "12" => array("Aveyron", "12", 12),
517
        "13" => array("Bouches-du-Rhône", "13", 13),
518
        "14" => array("Calvados", "14", 14),
519
        "15" => array("Cantal", "15", 15),
520
        "16" => array("Charente", "16", 16),
521
        "17" => array("Charente-Maritime", "17", 17),
522
        "18" => array("Cher", "18", 18),
523
        "19" => array("Corrèze", "19", 19),
524
        "20" => array("Corse", "20", 20),
525
        "2A" => array("Haute-Corse", "2A", 20),
526
        "2B" => array("Corse-du-Sud", "2B", 20),
527
        "21" => array("Côte-d'Or", "21", 21),
528
        "22" => array("Côtes-d'Armor", "22", 22),
529
        "23" => array("Creuse", "23", 23),
530
        "24" => array("Dordogne", "24", 24),
531
        "25" => array("Doubs","25", 25),
532
        "26" => array("Drôme", "26", 26),
533
        "27" => array("Eure", "27", 27),
534
        "28" => array("Eure-et-Loir", "28", 28),
535
        "29" => array("Finistère", "29", 29),
536
        "30" => array("Gard", "30", 30),
537
        "31" => array("Haute-Garonne", "31", 31),
538
        "32" => array("Gers", "32", 32),
539
        "33" => array("Gironde", "33", 33),
540
        "34" => array("Hérault", "34", 34),
541
        "35" => array("Ille-et-Vilaine", "35", 35),
542
        "36" => array("Indre", "36", 36),
543
        "37" => array("Indre-et-Loire", "37", 37),
544
        "38" => array("Isère", "38", 38),
545
        "39" => array("Jura", "39", 39),
546
        "40" => array("Landes", "40", 40),
547
        "41" => array("Loir-et-Cher", "41", 41),
548
        "42" => array("Loire", "42", 42),
549
        "43" => array("Haute-Loire", "43", 43),
550
        "44" => array("Loire-Atlantique", "44", 44),
551
        "45" => array("Loiret", "45", 45),
552
        "46" => array("Lot", "46", 46),
553
        "47" => array("Lot-et-Garonne", "47", 47),
554
        "48" => array("Lozére ", "48", 48),
555
        "49" => array("Maine-et-Loire", "49", 49),
556
        "50" => array("Manche", "50", 50),
557
        "51" => array("Marne", "51", 51),
558
        "52" => array("Haute-Marne", "52", 52),
559
        "53" => array("Mayenne", "53", 53),
560
        "54" => array("Meurthe-et-Moselle", "54", 54),
561
        "55" => array("Meuse", "55", 55),
562
        "56" => array("Morbihan", "56", 56),
563
        "57" => array("Moselle", "57", 57),
564
        "58" => array("Nièvre", "58", 58),
565
        "59" => array("Nord", "59", 59),
566
        "60" => array("Oise", "60", 60),
567
        "61" => array("Orne", "61", 61),
568
        "62" => array("Pas-de-Calais", "62", 62),
569
        "63" => array("Puy-de-Dôme", "63", 63),
570
        "64" => array("Pyrénées-Atlantiques", "64", 64),
571
        "65" => array("Hautes-Pyrénées", "65", 65),
572
        "66" => array("Pyrénées-Orientales", "66", 66),
573
        "67" => array("Bas-Rhin", "67", 67),
574
        "68" => array("Haut-Rhin", "68", 68),
575
        "69" => array("Rhône", "69", 69),
576
        "70" => array("Haute-Saône", "70", 70),
577
        "71" => array("Saône-et-Loire", "71", 71),
578
        "72" => array("Sarthe", "72", 72),
579
        "73" => array("Savoie", "73", 73),
580
        "74" => array("Haute-Savoie", "74", 74),
581
        "75" => array("Paris", "75", 75),
582
        "76" => array("Seine-Maritime", "76", 76),
583
        "77" => array("Seine-et-Marne", "77", 77),
584
        "78" => array("Yvelines", "78", 78),
585
        "79" => array("Deux-Sèvres", "79", 79),
586
        "80" => array("Somme", "80", 80),
587
        "81" => array("Tarn", "81", 81),
588
        "82" => array("Tarn-et-Garonne", "82", 82),
589
        "83" => array("Var", "83", 83),
590
        "84" => array("Vaucluse", "84", 84),
591
        "85" => array("Vendée", "85", 85),
592
        "86" => array("Vienne", "86", 86),
593
        "87" => array("Haute-Vienne", "87", 87),
594
        "88" => array("Vosges", "88", 88),
595
        "89" => array("Yonne", "89", 89),
596
        "90" => array("Territoire-de-Belfort", "90", 90),
597
        "91" => array("Essonne", "91", 91),
598
        "92" => array("Hauts-de-Seine", "92", 92),
599
        "93" => array("Seine-Saint-Denis", "93", 93),
600
        "94" => array("Val-de-Marne", "94", 94),
601
        "95" => array("Val-d'Oise", "95", 95),
602
        "96" => array("aaa", "96", 96),
603
        "971" => array("Guadeloupe", "971", 971),
604
        "972" => array("Martinique", "972", 972),
605
        "973" => array("Guyane", "973", 973),
606
        "974" => array("Réunion", "974", 974),
607
        "99" => array("Etranger", "99", 99),
608
        );
609
 
610
	static public function get() {
611
		return self::$departements;
612
	}
613
 
614
    static public function getNom($n) {
615
		return self::$departements[$n][0];
616
	}
617
 
618
	static public function getIdChaine($n) {
619
		return self::$departements[$n][1];
620
	}
621
 
622
	static public function getIdNumerique($n) {
623
		return (int)self::$departements[$n][2];
624
	}
625
 
626
	static public function getIdEflore($n) {
627
		return (int)self::$departements[$n][3];
628
	}
629
}
630
?>