Line 260... |
Line 260... |
260 |
PRIMARY KEY (`id_observation`) ,
|
260 |
PRIMARY KEY (`id_observation`) ,
|
261 |
UNIQUE INDEX `id_obs` (`ce_utilisateur` ASC, `ordre` ASC) ,
|
261 |
UNIQUE INDEX `id_obs` (`ce_utilisateur` ASC, `ordre` ASC) ,
|
262 |
INDEX `date_creation` (`ce_utilisateur`(10) ASC, `date_creation` ASC) ,
|
262 |
INDEX `date_creation` (`ce_utilisateur`(10) ASC, `date_creation` ASC) ,
|
263 |
INDEX `coordonnees` (`latitude` ASC, `longitude` ASC) ,
|
263 |
INDEX `coordonnees` (`latitude` ASC, `longitude` ASC) ,
|
264 |
INDEX `nom_retenu` (`nom_ret` ASC) ,
|
264 |
INDEX `nom_retenu` (`nom_ret` ASC) ,
|
265 |
INDEX `date_observation` (`date_observation` ASC) ,
|
265 |
INDEX `date_observation` (`date_observation` ASC)
|
266 |
INDEX `nom_referentiel` (`nom_referentiel`(5) ASC) )
|
266 |
INDEX `nom_referentiel` (`nom_referentiel`(5) ASC) COMMENT "index sur (bdtfx,bdtfx,isfan)",
|
- |
|
267 |
INDEX `date_transmission` (`date_transmission` DESC) COMMENT "date_transmission : nécessaire à l'ORDER BY utilisé dans la liste d'observation de DEL", -- 'relax emacs
|
- |
|
268 |
INDEX `transmission` (`transmission` ASC) ) COMMENT "nécessaire à CEL/DEL qui officie avec transmission = 1"
|
267 |
ENGINE = MyISAM
|
269 |
ENGINE = MyISAM
|
268 |
DEFAULT CHARACTER SET = utf8
|
270 |
DEFAULT CHARACTER SET = utf8
|
269 |
COLLATE = utf8_general_ci;
|
271 |
COLLATE = utf8_general_ci;
|
Line 299... |
Line 301... |
299 |
`valeur` TEXT NOT NULL COMMENT 'Valeur du champ.' ,
|
301 |
`valeur` TEXT NOT NULL COMMENT 'Valeur du champ.' ,
|
300 |
PRIMARY KEY (`id_observation`, `cle`) )
|
302 |
PRIMARY KEY (`id_observation`, `cle`) )
|
301 |
ENGINE = MyISAM
|
303 |
ENGINE = MyISAM
|
302 |
DEFAULT CHARACTER SET = utf8
|
304 |
DEFAULT CHARACTER SET = utf8
|
303 |
COLLATE = utf8_general_ci
|
305 |
COLLATE = utf8_general_ci
|
304 |
COMMENT = 'Stockage d\'info supplémentaires sur une image';
|
306 |
COMMENT = 'Stockage d\'info supplémentaires sur une image'; -- 'relax emacs
|
Line 305... |
Line 307... |
305 |
|
307 |
|
306 |
|
308 |
|
307 |
-- -----------------------------------------------------
|
309 |
-- -----------------------------------------------------
|
Line 317... |
Line 319... |
317 |
-- -----------------------------------------------------
|
319 |
-- -----------------------------------------------------
|
318 |
-- View `cel_utilisateurs`
|
320 |
-- View `cel_utilisateurs`
|
319 |
-- -----------------------------------------------------
|
321 |
-- -----------------------------------------------------
|
320 |
DROP VIEW IF EXISTS `cel_utilisateurs` ;
|
322 |
DROP VIEW IF EXISTS `cel_utilisateurs` ;
|
321 |
DROP TABLE IF EXISTS `cel_utilisateurs`;
|
323 |
DROP TABLE IF EXISTS `cel_utilisateurs`;
|
322 |
CREATE OR REPLACE VIEW `cel_utilisateurs` AS
|
324 |
CREATE OR REPLACE VIEW `cel_utilisateurs` AS
|
323 |
SELECT at.U_ID AS id_utilisateur, at.U_SURNAME AS prenom, at.U_NAME AS nom, at.U_MAIL AS courriel, at.U_PASSWD AS mot_de_passe,
|
325 |
SELECT at.U_ID AS id_utilisateur, at.U_SURNAME AS prenom, at.U_NAME AS nom, at.U_MAIL AS courriel, at.U_PASSWD AS mot_de_passe,
|
324 |
ui.licence_acceptee, ui.admin, ui.preferences, ui.date_premiere_utilisation
|
326 |
ui.licence_acceptee, ui.admin, ui.preferences, ui.date_premiere_utilisation
|
325 |
FROM tela_prod_v4.annuaire_tela AS at
|
327 |
FROM tela_prod_v4.annuaire_tela AS at
|
326 |
LEFT JOIN cel_utilisateurs_infos AS ui ON (ui.id_utilisateur = at.U_ID);
|
328 |
LEFT JOIN cel_utilisateurs_infos AS ui ON (ui.id_utilisateur = at.U_ID);
|
Line 327... |
Line 329... |
327 |
|
329 |
|
328 |
-- -----------------------------------------------------
|
330 |
-- -----------------------------------------------------
|
329 |
-- View `cel_tapir`
|
331 |
-- View `cel_tapir`
|
330 |
-- -----------------------------------------------------
|
332 |
-- -----------------------------------------------------
|
331 |
DROP VIEW IF EXISTS `cel_tapir` ;
|
333 |
DROP VIEW IF EXISTS `cel_tapir` ;
|
332 |
DROP TABLE IF EXISTS `cel_tapir`;
|
334 |
DROP TABLE IF EXISTS `cel_tapir`;
|
333 |
CREATE OR REPLACE VIEW `cel_tapir` AS
|
335 |
CREATE OR REPLACE VIEW `cel_tapir` AS
|
334 |
select concat(_utf8'urn:lsid:tela-botanica.org:cel:',`o`.`id_observation`) AS `guid`,
|
336 |
select concat(_utf8'urn:lsid:tela-botanica.org:cel:',`o`.`id_observation`) AS `guid`,
|
335 |
`o`.`id_observation` AS `observation_id`,
|
337 |
`o`.`id_observation` AS `observation_id`,
|
336 |
date_format(`o`.`date_observation`,'%Y-%m-%d') AS `observation_date`,
|
338 |
date_format(`o`.`date_observation`,'%Y-%m-%d') AS `observation_date`,
|
337 |
`o`.`nom_sel` AS `nom_scientifique_complet`,
|
339 |
`o`.`nom_sel` AS `nom_scientifique_complet`,
|
338 |
`o`.`nom_sel_nn` AS `nom_num_nomenclatural`,
|
340 |
`o`.`nom_sel_nn` AS `nom_num_nomenclatural`,
|
339 |
`o`.`nt` AS `nom_num_taxonomique`,
|
341 |
`o`.`nt` AS `nom_num_taxonomique`,
|
340 |
`o`.`famille` AS `nom_famille`,
|
342 |
`o`.`famille` AS `nom_famille`,
|
341 |
concat(_utf8'',`zg`.`nom`,' [INSEE:',`zg`.`code`,']') AS `lieu_commune_nom_complet`,
|
343 |
concat(_utf8'',`zg`.`nom`,' [INSEE:',`zg`.`code`,']') AS `lieu_commune_nom_complet`,
|
342 |
`zg`.`nom` AS `lieu_commune_nom`,
|
344 |
`zg`.`nom` AS `lieu_commune_nom`,
|
343 |
`zg`.`code` AS `lieu_commune_code_insee`,
|
345 |
`zg`.`code` AS `lieu_commune_code_insee`,
|
344 |
if((`zg`.`code` <> ''), 'Lion1906 version 26-05-2008 - http://www.lion1906.com/', NULL) AS `lieu_commune_source`,
|
346 |
if((`zg`.`code` <> ''), 'Lion1906 version 26-05-2008 - http://www.lion1906.com/', NULL) AS `lieu_commune_source`,
|
345 |
format(if((`o`.`latitude` <> ''), `o`.`latitude`, `zg`.`wgs84_latitude`), 5) AS `lieu_latitude`,
|
347 |
format(if((`o`.`latitude` <> ''), `o`.`latitude`, `zg`.`wgs84_latitude`), 5) AS `lieu_latitude`,
|
346 |
format(if((`o`.`longitude` <> ''), `o`.`longitude`, `zg`.`wgs84_longitude`), 5) AS `lieu_longitude`,
|
348 |
format(if((`o`.`longitude` <> ''), `o`.`longitude`, `zg`.`wgs84_longitude`), 5) AS `lieu_longitude`,
|
347 |
`o`.`geodatum` AS `lieu_geodatum`,
|
349 |
`o`.`geodatum` AS `lieu_geodatum`,
|
348 |
if((`o`.`geodatum` <> ''), 'Coordonnées issues de l''utilisation de Google Map', NULL) AS `lieu_georeference_source`,
|
350 |
if((`o`.`geodatum` <> ''), 'Coordonnées issues de l''utilisation de Google Map', NULL) AS `lieu_georeference_source`,
|
349 |
`o`.`lieudit` AS `lieu_localite`,
|
351 |
`o`.`lieudit` AS `lieu_localite`,
|
350 |
`o`.`prenom_utilisateur` AS `observateur_prenom`,
|
352 |
`o`.`prenom_utilisateur` AS `observateur_prenom`,
|
351 |
`o`.`nom_utilisateur` AS `observateur_nom`,
|
353 |
`o`.`nom_utilisateur` AS `observateur_nom`,
|
352 |
`o`.`courriel_utilisateur` AS `observateur_courriel`,
|
354 |
`o`.`courriel_utilisateur` AS `observateur_courriel`,
|
353 |
concat(`o`.`prenom_utilisateur`,_utf8' ',`o`.`nom_utilisateur`) AS `observateur_nom_complet`,
|
355 |
concat(`o`.`prenom_utilisateur`,_utf8' ',`o`.`nom_utilisateur`) AS `observateur_nom_complet`,
|
354 |
concat_ws(' ',`o`.`prenom_utilisateur`,`o`.`nom_utilisateur`,concat('<',`o`.`courriel_utilisateur`,'>')) AS `observateur_intitule`,
|
356 |
concat_ws(' ',`o`.`prenom_utilisateur`,`o`.`nom_utilisateur`,concat('<',`o`.`courriel_utilisateur`,'>')) AS `observateur_intitule`,
|
355 |
`o`.`commentaire` AS `observation_commentaire`,
|
357 |
`o`.`commentaire` AS `observation_commentaire`,
|
356 |
concat(_utf8'nom_num_nomenclatural=',`o`.`nom_sel_nn`,'; ',
|
358 |
concat(_utf8'nom_num_nomenclatural=',`o`.`nom_sel_nn`,'; ',
|
357 |
'nom_ret=',encodeToDcsv(`o`.`nom_ret`),'; ',
|
359 |
'nom_ret=',encodeToDcsv(`o`.`nom_ret`),'; ',
|
358 |
'nom_num_ret=',`o`.`nom_ret_nn`,'; ',
|
360 |
'nom_num_ret=',`o`.`nom_ret_nn`,'; ',
|
359 |
'nom_num_taxonomique=',`o`.`nt`,'; ',
|
361 |
'nom_num_taxonomique=',`o`.`nt`,'; ',
|
360 |
'nom_referentiel=',encodeToDcsv(`o`.`nom_referentiel`),'; ',
|
362 |
'nom_referentiel=',encodeToDcsv(`o`.`nom_referentiel`),'; ',
|
361 |
'saisie_date_transmission=',`o`.`date_transmission`,'; ',
|
363 |
'saisie_date_transmission=',`o`.`date_transmission`,'; ',
|
362 |
'saisie_date_creation=',`o`.`date_creation`,'; ',
|
364 |
'saisie_date_creation=',`o`.`date_creation`,'; ',
|
363 |
'ordre=',`o`.`ordre`,'; ',
|
365 |
'ordre=',`o`.`ordre`,'; ',
|
364 |
'station=',encodeToDcsv(`o`.`station`),'; ',
|
366 |
'station=',encodeToDcsv(`o`.`station`),'; ',
|
365 |
'milieu=',encodeToDcsv(`o`.`milieu`),'; ',
|
367 |
'milieu=',encodeToDcsv(`o`.`milieu`),'; ',
|
366 |
'mots_cles=',encodeToDcsv(`o`.`mots_cles_texte`),'; ',
|
368 |
'mots_cles=',encodeToDcsv(`o`.`mots_cles_texte`),'; ',
|
367 |
'zg_utm_secteur=',encodeToDcsv(`zg`.`utm_secteur`),'; ',
|
369 |
'zg_utm_secteur=',encodeToDcsv(`zg`.`utm_secteur`),'; ',
|
368 |
'zg_date_modification=',`zg`.`date_modification`) AS `observation_information_complement`,
|
370 |
'zg_date_modification=',`zg`.`date_modification`) AS `observation_information_complement`,
|
369 |
`o`.`date_modification` AS `saisie_date_modification`,
|
371 |
`o`.`date_modification` AS `saisie_date_modification`,
|
370 |
`o`.`date_creation` AS `saisie_date_creation`
|
372 |
`o`.`date_creation` AS `saisie_date_creation`
|
371 |
from (`cel_obs` `o`
|
373 |
from (`cel_obs` `o`
|
372 |
left join `cel_zones_geo` `zg` on((`o`.`ce_zone_geo` = `zg`.`id_zone_geo`)))
|
374 |
left join `cel_zones_geo` `zg` on((`o`.`ce_zone_geo` = `zg`.`id_zone_geo`)))
|
373 |
where `o`.`transmission` = 1
|
375 |
where `o`.`transmission` = 1
|
Line 374... |
Line 376... |
374 |
AND (`o`.`mots_cles_texte` NOT LIKE '%sensible%' OR `o`.`mots_cles_texte` IS NULL);
|
376 |
AND (`o`.`mots_cles_texte` NOT LIKE '%sensible%' OR `o`.`mots_cles_texte` IS NULL);
|
375 |
|
377 |
|