BiodiversiteQuebec / bdqc_taxa

`BIOQC-taxa` is a python package that interface with *Biodiversité Québec*'s database to query reference taxa sources, parse their return and generate records.
0 stars 0 forks source link

CDPNQ Vernacular : No match for 'Ladona julia' or 'Libellula julia' #5

Closed vincent-beauregard-ielab closed 1 year ago

vincent-beauregard-ielab commented 1 year ago

Il n'y a pas de synonyme intégré à la table cdpnq_odonates.

Dans le cas de Ladona Julia, c'est le nom accepté par CDPNQ alors que celui accepté est Libellula julia.

Puisque le nom est accepté par GBIF, aucun synonyme n'est offert à la fonction de recherche du cdpnq. Puisqu'aucun synonyme n'est précisé pour Ladona julia, il n'y a aucun match pour Libellula julia.

vincent-beauregard-ielab commented 1 year ago

Test

    def test_synonym_cdpnq(self, name = 'Libellula julia'):
        results = Vernacular.get(name)
        self.assertVernacularList(results)
        self.assertTrue(any([vn.source == 'CDPNQ' for vn in results]))