okfnfr / CITES-biodiversity

CITES project
6 stars 0 forks source link

Revoir les taxa en Wikidata qui n'ont pas le rang d'une espèce #11

Open itly314 opened 4 years ago

itly314 commented 4 years ago

En complilant la liste des espèces qui n'ont pas d'illustration, on a trouvé 42 taxa qui n'ont pas le rang d'une espèce. Revoir cette liste pour resoudre des éventuelles anomalies.

Par exemple, trois d'entre eux n'ont pas de nom scientifique ...

SELECT ?idCITES ?wdItem ?scientificName ?IUCNtaxonID ?IUCNconservationstatusLabel_en 
(GROUP_CONCAT(?taxonCommonName ; separator=" ; ") AS ?taxonCommonNames)
WHERE
{
  ?wdItem wdt:P2040 ?idCITES.
  OPTIONAL{ ?wdItem wdt:P225 ?scientificName . }
  FILTER NOT EXISTS{ ?wdItem wdt:P18 ?image. } # without images
  FILTER NOT EXISTS{ ?wdItem wdt:P105 wd:Q7432 . }

  OPTIONAL { ?wdItem wdt:P627 ?IUCNtaxonID . }
  OPTIONAL { ?wdItem wdt:P141 ?IUCNconservationstatus . }
  OPTIONAL {
    ?wdItem wdt:P1843 ?taxonCommonName .
    FILTER( LANG(?taxonCommonName) = "en" || LANG(?taxonCommonName) = "fr" ) .
  }

  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en".
    ?IUCNconservationstatus rdfs:label ?IUCNconservationstatusLabel_en
  }

}
GROUP BY ?idCITES ?wdItem ?scientificName ?IUCNtaxonID ?IUCNconservationstatusLabel_en
ORDER BY ASC (?idCITES)
cecilaki commented 4 years ago

Excellent, merci pour ce travail @itly314 ! C'est typiquement un cas à soumettre à nos partenaires experts du Museum d'Histoire Naturelle.