serveurs:installation:web-srv:geonature-module-occtax

Ceci est une ancienne révision du document !


Configurer le module OccTax de GeoNature

  • Par défaut, OccTax permet de sélectionner un nom associé à la liste d'ID 100. Celle-ci est fournie vide ou avec quelques noms exemples.
  • Pour insérer tous les noms de TaxRef inférieur ou égal au genre exécuter les requêtes suivantes :
    DELETE FROM taxonomie.cor_nom_liste;
    DELETE FROM taxonomie.bib_noms;
     
    INSERT INTO taxonomie.bib_noms(cd_nom, cd_ref, nom_francais)
      SELECT cd_nom, cd_ref, nom_vern
      FROM taxonomie.taxref
      WHERE id_rang NOT IN (
        'Dumm','SPRG','KD','SSRG','IFRG','PH','SBPH','IFPH','DV','SBDV','SPCL','CLAD','CL',
        'SBCL','IFCL','LEG','SPOR','COH','OR','SBOR','IFOR','SPFM','FM','SBFM','TR','SSTR'
      );
     
    INSERT INTO taxonomie.cor_nom_liste (id_liste,id_nom)
      SELECT 100, n.id_nom FROM taxonomie.bib_noms AS n;
  • serveurs/installation/web-srv/geonature-module-occtax.1582127692.txt.gz
  • Dernière modification : 2020/02/19 15:54
  • de jpmilcent