You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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 ...
The text was updated successfully, but these errors were encountered: