Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trier les espèces pour l'arrêté préfectoral #111

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19,594 changes: 9,106 additions & 10,488 deletions data/liste-espèces-protégées.csv

Large diffs are not rendered by default.

171 changes: 155 additions & 16 deletions scripts/commun/outils-espèces.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { isOiseauAtteint, isFauneNonOiseauAtteinte, isFloreAtteinte } from '../t

/** @import {
* ClassificationEtreVivant,
* ClassificationEtreVivantSaisieEspèce,
* EspèceProtégée,
* EspèceProtégéeStrings,
* TAXREF_ROW,
Expand All @@ -15,45 +16,82 @@ import { isOiseauAtteint, isFauneNonOiseauAtteinte, isFloreAtteinte } from '../t
* FauneNonOiseauAtteinteJSON,
* DescriptionMenacesEspèces,
* DescriptionMenaceEspèceJSON,
* DescriptionMenacesEspècesPourAP,
* ActivitéMenançante,
* MéthodeMenançante,
* TransportMenançant,
* } from "../types/especes.d.ts" */

/**
* @type {Map<ClassificationEtreVivant, ClassificationEtreVivantSaisieEspèce>}
*/
export const classificationAPToclassificationSaisieEspèce = new Map([
["espèce végétale", "flore"],
["oiseau", "oiseau"],
["mammifère non-chiroptère", "faune non-oiseau"],
["chiroptère", "faune non-oiseau"],
["amphibien", "faune non-oiseau"],
["entomofaune", "faune non-oiseau"],
["poisson", "faune non-oiseau"],
["reptile", "faune non-oiseau"],
])

/** @type {Set<'oiseau' | 'faune non-oiseau' | 'flore'>} */
const classificationEtreVivants = new Set(["oiseau", "faune non-oiseau", "flore"])
/** @type {Set<ClassificationEtreVivant>} */
export const classificationEtreVivants = new Set([...classificationAPToclassificationSaisieEspèce.keys()].concat(["autre"]))

/** @type {Set<ClassificationEtreVivantSaisieEspèce>} */
export const classificationEtreVivantsSaisieEspèce = new Set([...classificationAPToclassificationSaisieEspèce.values()])

/**
* @param {string} x
* @returns {x is ClassificationEtreVivant}
*/
export function isClassif(x){
export function isClassificationAP(x){
// @ts-ignore
return classificationEtreVivants.has(x)
}

/**
* @param {string} x
* @returns {x is ClassificationEtreVivantSaisieEspèce}
*/
export function isClassificationSaisieEspèce(x){
// @ts-ignore
return classificationEtreVivantsSaisieEspèce.has(x)
}


/**
*
* @param {TAXREF_ROW} _
* @returns {ClassificationEtreVivant}
*/
export function TAXREF_ROWClassification({REGNE, CLASSE}){
if(REGNE === 'Plantae' || REGNE === 'Fungi' || REGNE === 'Chromista'){
return 'flore'
export function TAXREF_ROWClassification({REGNE, CLASSE, ORDRE, GROUP2_INPN}) {
if (REGNE === 'Plantae' || REGNE === 'Fungi' || REGNE === 'Chromista'){
return 'espèce végétale'
}

if(REGNE === 'Animalia'){
if(CLASSE === 'Aves'){
return 'oiseau'
if(REGNE === 'Animalia') {
if (CLASSE === 'Mammalia' && ORDRE !== 'Chiroptera') {
return 'mammifère non-chiroptère'
}
else{
return 'faune non-oiseau'

if (CLASSE === 'Mammalia' && ORDRE === 'Chiroptera') {
return 'chiroptère'
}

if (CLASSE === 'Amphibia') return 'amphibien'
if (CLASSE === 'Insecta' || CLASSE === 'Arachnida') return 'entomofaune'
if (CLASSE === 'Aves') return 'oiseau'
if (CLASSE === 'Actinopterygii') return 'poisson'

// Dans la BDC statuts des espèces, la classe `Reptilia` n'est jamais
// remplie pour les reptiles, on va donc se baser sur le groupe
// taxonomique `GROUP2_INPN`.
if (GROUP2_INPN === 'Reptiles') return 'reptile'
}

throw new TypeError(`Classification non reconnue pour REGNE ${REGNE} et CLASSE ${CLASSE}`)
return 'autre'
}

/**
Expand All @@ -73,7 +111,7 @@ export function nomsVernaculaires(NOM_VERN){
* @returns {EspèceProtégée}
*/
export function espèceProtégéeStringToEspèceProtégée({CD_REF, CD_TYPE_STATUTS, classification, nomsScientifiques, nomsVernaculaires}){
if(!isClassif(classification)){
if(!isClassificationAP(classification)){
throw new TypeError(`Classification d'espèce non reconnue: ${classification}. Les choix sont : ${[...classificationEtreVivants].join(', ')}`)
}

Expand Down Expand Up @@ -131,13 +169,11 @@ function etreVivantAtteintToJSON(etreVivantAtteint){
* @returns { DescriptionMenaceEspèceJSON[] }
*/
export function descriptionMenacesEspècesToJSON(descriptionMenacesEspèces){
console.log(descriptionMenacesEspèces)
// @ts-ignore
return Object.keys(descriptionMenacesEspèces).map((/** @type {ClassificationEtreVivant} */ classification) => {
return {
classification,
etresVivantsAtteints: descriptionMenacesEspèces[classification].map(etreVivantAtteintToJSON),

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [tsc] <7053> reported by reviewdog 🐶
Element implicitly has an 'any' type because expression of type 'ClassificationEtreVivant' can't be used to index type 'DescriptionMenacesEspèces'.
Property 'mammifère non-chiroptère' does not exist on type 'DescriptionMenacesEspèces'.


}
})
}
Expand Down Expand Up @@ -176,6 +212,71 @@ export function descriptionMenacesEspècesFromJSON(descriptionMenacesEspècesJSO
return descriptionMenacesEspèces
}

/**
* @param {DescriptionMenaceEspèceJSON[]} descriptionMenacesEspècesJSON
* @param {Map<EspèceProtégée['CD_REF'], EspèceProtégée>} espèceByCD_REF
* @param {ActivitéMenançante[]} activites
* @param {MéthodeMenançante[]} methodes
* @param {TransportMenançant[]} transports
* @returns {DescriptionMenacesEspècesPourAP}
*/
export function descriptionMenacesEspècesPourAPFromJSON(descriptionMenacesEspècesJSON, espèceByCD_REF, activites, methodes, transports) {
/** @type {DescriptionMenacesEspècesPourAP} */
const descriptionMenacesEspèces = Object.create(null)

/** @type {(OiseauAtteintJSON | FauneNonOiseauAtteinteJSON | FloreAtteinteJSON)[]} */
const etresVivantsAtteintsJSON = descriptionMenacesEspècesJSON.map(({etresVivantsAtteints}) => etresVivantsAtteints).flat()

/** @type {EspèceProtégée[]} */
const espècesProtégéesAtteintes = etresVivantsAtteintsJSON.map((etreVivantAtteintJSON) => espèceByCD_REF.get(etreVivantAtteintJSON.espèce)).filter(e => !!e)

/**
*
* @param {ClassificationEtreVivant} classificationEtreVivant
* @return {EspèceProtégée[]}
*/
function espècesProtégéesAtteintesPourClassification(classificationEtreVivant) {
return espècesProtégéesAtteintes.filter((espèceProtégée) => {
return espèceProtégée.classification === classificationEtreVivant
})
}

/**
*
* @param {EspèceProtégée} espèceProtégée
* @returns {OiseauAtteintJSON | FauneNonOiseauAtteinteJSON | FloreAtteinteJSON | undefined}
*/
function getEtreVivantAtteintJSONParEspèceProtégée(espèceProtégée) {
return etresVivantsAtteintsJSON.find(etreVivantAtteintJSON => etreVivantAtteintJSON.espèce === espèceProtégée['CD_REF'])
}

classificationEtreVivants.forEach((classificationEtreVivant) => {
const espècesPourClassification = espècesProtégéesAtteintesPourClassification(classificationEtreVivant)

// @ts-ignore
descriptionMenacesEspèces[classificationEtreVivant] = espècesPourClassification
.map(espèceProtégée => {
return getEtreVivantAtteintJSONParEspèceProtégée(espèceProtégée)
})
.filter(e => !!e)
.map(({espèce, espece, activité, méthode, transport, ...rest}) => {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'méthode' does not exist on type 'OiseauAtteintJSON | FauneNonOiseauAtteinteJSON | FloreAtteinteJSON'.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'transport' does not exist on type 'OiseauAtteintJSON | FauneNonOiseauAtteinteJSON | FloreAtteinteJSON'.

//@ts-expect-error TS ne comprend pas que si `espèce` n'est pas
// renseigné alors `espece` l'est forcément
const espèceParamDéprécié = espèceByCD_REF.get(espece)

return {
espèce: espèceByCD_REF.get(espèce) || espèceParamDéprécié,
activité: activites.find((a) => a.Code === activité),
méthode: methodes.find((m) => m.Code === méthode),
transport: transports.find((t) => t.Espèces === classificationEtreVivant && t.Code === transport),
...rest
}
})
})

return descriptionMenacesEspèces
}

/**
*
* @param {string} s // utf-8-encoded base64 string
Expand Down Expand Up @@ -208,4 +309,42 @@ export function importDescriptionMenacesEspècesFromURL(url, espèceByCD_REF, ac
return undefined
}
}
}
}

/**
*
* @param {Map<ClassificationEtreVivant, EspèceProtégée[]>} espècesProtégéesParClassificationEtreVivant
* @returns {Map<ClassificationEtreVivantSaisieEspèce, EspèceProtégée[]>}
*/
export function grouperEspècesParClassificationPourSaisieEspèce(espècesProtégéesParClassificationEtreVivant) {
/**
* @param {Map<ClassificationEtreVivant, EspèceProtégée[]>} espèces
* @param {ClassificationEtreVivantSaisieEspèce} classificationSaisieEspèce
* @returns {EspèceProtégée[]}
*/
const récupérerEspècesPourClassification = (espèces, classificationSaisieEspèce) => {
return [...espèces]
.map(([c, a]) => {
if (classificationAPToclassificationSaisieEspèce.get(c) === classificationSaisieEspèce) return a

return
})
.filter(a => !!a)
.flat()
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [tsc] <1005> reported by reviewdog 🐶
'>' expected.

/** @type {Map<ClassificationEtreVivantSaisieEspèce, EspèceProtégée[]} */
const espèces = new Map()

classificationEtreVivantsSaisieEspèce.forEach((classificationSaisieEspèce) => {
espèces.set(
classificationSaisieEspèce,
récupérerEspècesPourClassification(
espècesProtégéesParClassificationEtreVivant,
classificationSaisieEspèce,
)
)
})

return espèces
}
Loading
Loading