ecological-agent-skills 3.1.1 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/AGENT_CONTEXT.md +54 -1
  2. package/CATALOG.md +4 -3
  3. package/README.md +5 -4
  4. package/docs/DECISION_TREE.md +218 -0
  5. package/docs/GBIF_SETUP.md +88 -0
  6. package/docs/glossary.md +197 -0
  7. package/docs/repository-statistics.md +11 -8
  8. package/docs/taxonomy-diagram.md +182 -0
  9. package/environment.yaml +68 -64
  10. package/package.json +1 -1
  11. package/skills/SKILL_INDEX.json +156 -50
  12. package/skills/acoustic-monitoring/scripts/batch_species_detection.py +360 -360
  13. package/skills/acoustic-monitoring/scripts/compute_acoustic_indices.R +235 -235
  14. package/skills/acoustic-monitoring/scripts/compute_acoustic_indices.py +374 -374
  15. package/skills/biostatistics-workbench/scripts/glm_pipeline.R +4 -4
  16. package/skills/biostatistics-workbench/scripts/glm_pipeline.py +21 -21
  17. package/skills/camera-trap-processing/scripts/estimate_activity.R +169 -169
  18. package/skills/camera-trap-processing/scripts/process_camtrap_data.R +179 -179
  19. package/skills/camera-trap-processing/scripts/process_camtrap_data.py +192 -192
  20. package/skills/community-ecology-ordination/SKILL.md +12 -0
  21. package/skills/community-ecology-ordination/scripts/community_analysis.R +9 -9
  22. package/skills/community-ecology-ordination/scripts/community_analysis.py +231 -231
  23. package/skills/ecological-data-foundation/SKILL.md +11 -0
  24. package/skills/ecological-data-foundation/scripts/__pycache__/download_from_ebird.cpython-314.pyc +0 -0
  25. package/skills/ecological-data-foundation/scripts/__pycache__/download_from_gbif.cpython-314.pyc +0 -0
  26. package/skills/ecological-data-foundation/scripts/__pycache__/download_from_inat.cpython-314.pyc +0 -0
  27. package/skills/ecological-data-foundation/scripts/__pycache__/download_from_iucn.cpython-314.pyc +0 -0
  28. package/skills/ecological-data-foundation/scripts/__pycache__/download_from_obis.cpython-314.pyc +0 -0
  29. package/skills/ecological-data-foundation/scripts/clean_occurrences.R +34 -34
  30. package/skills/ecological-data-foundation/scripts/clean_occurrences.py +314 -268
  31. package/skills/ecological-data-foundation/scripts/download_from_ebird.R +251 -251
  32. package/skills/ecological-data-foundation/scripts/download_from_ebird.py +364 -364
  33. package/skills/ecological-data-foundation/scripts/download_from_gbif.R +315 -315
  34. package/skills/ecological-data-foundation/scripts/download_from_gbif.py +561 -407
  35. package/skills/ecological-data-foundation/scripts/download_from_inat.R +238 -238
  36. package/skills/ecological-data-foundation/scripts/download_from_inat.py +304 -304
  37. package/skills/ecological-data-foundation/scripts/download_from_iucn.R +273 -273
  38. package/skills/ecological-data-foundation/scripts/download_from_iucn.py +344 -344
  39. package/skills/ecological-data-foundation/scripts/download_from_obis.R +248 -248
  40. package/skills/ecological-data-foundation/scripts/download_from_obis.py +318 -318
  41. package/skills/ecological-impact-assessment/SKILL.md +17 -1
  42. package/skills/ecological-impact-assessment/scripts/baci_analysis.R +21 -21
  43. package/skills/ecological-impact-assessment/scripts/fragmentation_analysis.py +141 -141
  44. package/skills/ecological-impact-assessment/scripts/power_analysis_baci.R +274 -274
  45. package/skills/ecosystem-services-assessment/SKILL.md +12 -1
  46. package/skills/ecosystem-services-assessment/scripts/compute_es.py +189 -189
  47. package/skills/ecosystem-services-assessment/scripts/tradeoff_analysis.R +26 -26
  48. package/skills/environmental-time-series/scripts/recovery_trajectory.R +43 -43
  49. package/skills/environmental-time-series/scripts/recovery_trajectory.py +178 -178
  50. package/skills/environmental-time-series/scripts/trend_analysis.R +33 -33
  51. package/skills/environmental-time-series/scripts/trend_analysis.py +184 -184
  52. package/skills/geoprocessing-for-ecology/SKILL.md +12 -1
  53. package/skills/geoprocessing-for-ecology/scripts/__pycache__/download_predictors.cpython-314.pyc +0 -0
  54. package/skills/geoprocessing-for-ecology/scripts/download_predictors.R +257 -239
  55. package/skills/geoprocessing-for-ecology/scripts/download_predictors.py +540 -379
  56. package/skills/geoprocessing-for-ecology/scripts/gee_time_series.py +412 -0
  57. package/skills/geoprocessing-for-ecology/scripts/stack_and_extract.R +30 -30
  58. package/skills/geoprocessing-for-ecology/scripts/stack_and_extract.py +172 -172
  59. package/skills/landscape-connectivity/scripts/connectivity_analysis.py +389 -389
  60. package/skills/landscape-connectivity/scripts/connectivity_metrics.R +278 -278
  61. package/skills/landscape-connectivity/scripts/resistance_surface.R +246 -246
  62. package/skills/model-validation-and-uncertainty/scripts/extrapolation_risk.R +312 -317
  63. package/skills/model-validation-and-uncertainty/scripts/validate_model.py +226 -226
  64. package/skills/model-validation-and-uncertainty/scripts/validate_sdm.R +10 -10
  65. package/skills/occupancy-and-detection/scripts/occupancy_analysis.R +11 -11
  66. package/skills/occupancy-and-detection/scripts/occupancy_analysis.py +159 -159
  67. package/skills/population-viability-analysis/scripts/matrix_pva.R +258 -258
  68. package/skills/population-viability-analysis/scripts/pva_analysis.py +446 -446
  69. package/skills/population-viability-analysis/scripts/stochastic_pva.R +359 -359
  70. package/skills/predictive-modeling-best-practices/SKILL.md +11 -0
  71. package/skills/predictive-modeling-best-practices/scripts/collinearity_check.R +12 -12
  72. package/skills/predictive-modeling-best-practices/scripts/spatial_cv.py +182 -182
  73. package/skills/reproducible-ecology-pipeline/SKILL.md +10 -0
  74. package/skills/reproducible-ecology-pipeline/scripts/check_packages.R +214 -0
  75. package/skills/reproducible-ecology-pipeline/scripts/generate_file_manifest.py +110 -110
  76. package/skills/spatial-prioritization/scripts/prioritization_sensitivity.R +315 -315
  77. package/skills/spatial-prioritization/scripts/run_prioritization.R +336 -336
  78. package/skills/species-distribution-modeling/SKILL.md +37 -0
  79. package/skills/species-distribution-modeling/scripts/predict_distribution.R +244 -244
  80. package/skills/species-distribution-modeling/scripts/predict_distribution.py +289 -288
  81. package/skills/species-distribution-modeling/scripts/prepare_future_layers.R +351 -351
  82. package/skills/species-distribution-modeling/scripts/project_scenarios.R +220 -220
  83. package/skills/species-distribution-modeling/scripts/run_ensemble_sdm.R +688 -96
  84. package/skills/species-distribution-modeling/scripts/sdm_pipeline.py +320 -318
  85. package/skills/species-distribution-modeling/scripts/tune_maxnet.R +351 -342
  86. package/templates/SKILL_TEMPLATE.md +29 -26
  87. package/templates/reports/technical-report-template.md +18 -3
  88. package/workflows/run-acoustic-monitoring/WORKFLOW.md +83 -0
package/AGENT_CONTEXT.md CHANGED
@@ -47,10 +47,17 @@ Each workflow lives at `workflows/<workflow-id>/WORKFLOW.md`.
47
47
  | **Environmental time series** | ecological-data-foundation | environmental-time-series | biostatistics-workbench | reproducible-ecology-pipeline | — |
48
48
  | **Ecosystem services** | ecological-data-foundation | geoprocessing-for-ecology | ecosystem-services-assessment | model-validation-and-uncertainty | reproducible-ecology-pipeline |
49
49
  | **Multispecies screening** | ecological-data-foundation | geoprocessing-for-ecology | species-distribution-modeling (loop) | model-validation-and-uncertainty | reproducible-ecology-pipeline |
50
+ | **Acoustic monitoring** | ecological-data-foundation | acoustic-monitoring | biostatistics-workbench | model-validation-and-uncertainty | reproducible-ecology-pipeline |
51
+ | **Camera trap occupancy** | ecological-data-foundation | camera-trap-processing | occupancy-and-detection | model-validation-and-uncertainty | reproducible-ecology-pipeline |
52
+ | **Landscape connectivity** | ecological-data-foundation | geoprocessing-for-ecology | landscape-connectivity | model-validation-and-uncertainty | reproducible-ecology-pipeline |
53
+ | **Population viability** | ecological-data-foundation | biostatistics-workbench | population-viability-analysis | model-validation-and-uncertainty | reproducible-ecology-pipeline |
54
+ | **Conservation prioritization** | ecological-data-foundation | geoprocessing-for-ecology | species-distribution-modeling | spatial-prioritization | reproducible-ecology-pipeline |
50
55
 
51
56
  For multispecies projects always read `workflows/run-multispecies-screening/WORKFLOW.md`
52
57
  before starting. It contains the priority classification logic.
53
58
 
59
+ Available workflows (14): `run-sdm-study`, `run-multispecies-screening`, `run-occupancy-analysis`, `run-camera-trap-occupancy`, `run-acoustic-monitoring`, `run-population-viability`, `run-conservation-prioritization`, `assess-ecological-impact`, `assess-ecosystem-services`, `assess-landscape-connectivity`, `analyze-community-structure`, `analyze-environmental-change`, `build-fire-risk-map`, `produce-technical-report`.
60
+
54
61
  ---
55
62
 
56
63
  ## 3. Disambiguation Rules for Overlapping Skills
@@ -153,7 +160,53 @@ Apply the appropriate routing based on project complexity:
153
160
 
154
161
  ---
155
162
 
156
- ## 7. File Conventions of This Repository
163
+ ## 7. Environmental Data Sources
164
+
165
+ ### Default source: CHELSA v2.1
166
+
167
+ The default environmental predictor source for all SDM and geoprocessing workflows is **CHELSA v2.1**
168
+ (Climatologies at High resolution for the Earth's Land Surface Areas).
169
+
170
+ - Resolution: ~1 km (30 arcsec)
171
+ - Variables: BIO1-BIO19 (1981-2010 climatology)
172
+ - Download URL pattern: `https://os.zhdk.cloud.switch.ch/chelsav2/GLOBAL/climatologies/1981-2010/bio/CHELSA_bio{N}_1981-2010_V.2.1.tif`
173
+ - No authentication required
174
+ - License: CC BY 4.0
175
+
176
+ **WorldClim v2.1** is the automatic fallback if CHELSA downloads fail.
177
+ The `download_predictors.py` script handles this transparently — no user action required.
178
+
179
+ Do not default to WorldClim unless the user explicitly requests it or CHELSA is unavailable.
180
+
181
+ ### Python version compatibility
182
+
183
+ | Python | Status for this repository |
184
+ |--------|---------------------------|
185
+ | 3.11 | Recommended — all packages build correctly |
186
+ | 3.12 | Supported — most packages available |
187
+ | 3.13 | Untested |
188
+ | 3.14 | Not recommended — `elapid` (MaxEnt) fails to build; `pygbif` has API bugs |
189
+
190
+ If `elapid` is unavailable (Python 3.12+), `sdm_pipeline.py` automatically falls back to an
191
+ RF + BRT ensemble without MaxEnt. This is logged as a DECISION entry.
192
+
193
+ If `pygbif` raises a `TypeError` on `Session.request()` (Python 3.14), `download_from_gbif.py`
194
+ automatically falls back to direct HTTP calls to the GBIF REST API.
195
+
196
+ ### Spatial thinning
197
+
198
+ `clean_occurrences.py` accepts an optional third argument `thin_deg` (decimal degrees).
199
+ When provided, one record is retained per `thin_deg × thin_deg` grid cell to reduce
200
+ spatial autocorrelation before SDM fitting. Recommended values: 0.1 (~11 km) to 0.5 (~55 km).
201
+
202
+ Example:
203
+ ```bash
204
+ python clean_occurrences.py data/raw/occurrences.csv data/processed 0.1
205
+ ```
206
+
207
+ ---
208
+
209
+ ## 8. File Conventions of This Repository
157
210
 
158
211
  ### Where to put input data
159
212
  - Place raw input files in `data/raw/` (create if absent).
package/CATALOG.md CHANGED
@@ -152,7 +152,7 @@ A quick-reference index for all 17 skills. Each row summarises the skill's domai
152
152
  **When to use:** When processing audio recordings from AudioMoth, SM4, or similar recorders to compute soundscape indices or detect species via BirdNET or similar classifiers.
153
153
  **Inputs:** Audio directory (WAV/FLAC), recording metadata, species list (optional), location coordinates
154
154
  **Outputs:** Acoustic indices time series (CSV), detection list with confidence scores, species accumulation curve, soundscape heatmap
155
- **Used by workflows:** (standalone; pairs with environmental-time-series)
155
+ **Used by workflows:** run-acoustic-monitoring; pairs with environmental-time-series
156
156
 
157
157
  ---
158
158
 
@@ -192,14 +192,15 @@ A quick-reference index for all 17 skills. Each row summarises the skill's domai
192
192
  | analyze-community-structure | ✓ | | ✓ | | ✓ | | | ✓ | | | | ✓ | | | | | |
193
193
  | build-fire-risk-map | ✓ | ✓ | | ✓ | ✓ | | | | ✓ | ✓ | | | | | | | |
194
194
  | run-occupancy-analysis | ✓ | | ✓ | | ✓ | | ✓ | | | | | ✓ | | | | | |
195
- | analyze-environmental-change | ✓ | ✓ | | | | | | | ✓ | ✓ | | ✓ | | | | | |
195
+ | analyze-environmental-change | ✓ | ✓ | | | | | | | ✓ | ✓ | | ✓ | | | | | |
196
196
  | assess-ecosystem-services | ✓ | ✓ | ✓ | | | | | | | | ✓ | ✓ | | | | | |
197
- | produce-technical-report | | | | | | | | | | | | ✓ | | | | | |
197
+ | produce-technical-report | | | | | | | | | | | | ✓ | | | | | |
198
198
  | run-multispecies-screening | ✓ | ✓ | | ✓ | ✓ | ✓ | | | | | | | | | | | |
199
199
  | run-camera-trap-occupancy | ✓ | | | | ✓ | | ✓ | | | | | ✓ | ✓ | | | | |
200
200
  | assess-landscape-connectivity | ✓ | ✓ | | | ✓ | | | | | | | ✓ | | | ✓ | | |
201
201
  | run-population-viability | ✓ | | ✓ | | ✓ | | | | | | | ✓ | | | | ✓ | |
202
202
  | run-conservation-prioritization | ✓ | ✓ | | | | ✓ | | | | | | ✓ | | | | | ✓ |
203
+ | run-acoustic-monitoring | ✓ | | ✓ | | ✓ | | | | | | | ✓ | | ✓ | | | |
203
204
 
204
205
  ---
205
206
 
package/README.md CHANGED
@@ -8,7 +8,7 @@ Teach your AI agent to do rigorous ecology.
8
8
 
9
9
  Works with Claude Code, Gemini CLI, Cursor, GitHub Copilot, and any agent that reads Markdown.
10
10
 
11
- **17 modular skills** | **13 multi-step workflows** | **58 R/Python scripts** | **14 worked examples across 6 continents**
11
+ **17 modular skills** | **14 multi-step workflows** | **58 R/Python scripts** | **14 worked examples across 6 continents**
12
12
 
13
13
  ---
14
14
 
@@ -18,7 +18,7 @@ Works with Claude Code, Gemini CLI, Cursor, GitHub Copilot, and any agent that r
18
18
  - [Installation](#installation)
19
19
  - [Core Concepts](#core-concepts)
20
20
  - [Skills (17)](#skills-17)
21
- - [Workflows (13)](#workflows-13)
21
+ - [Workflows (14)](#workflows-14)
22
22
  - [How to Use Skills](#how-to-use-skills)
23
23
  - [For AI Agents](#for-ai-agents)
24
24
  - [Examples (14)](#examples-14)
@@ -194,7 +194,7 @@ See [CATALOG.md](CATALOG.md) for full metadata, inputs, outputs, and workflow li
194
194
 
195
195
  ---
196
196
 
197
- ## Workflows (13)
197
+ ## Workflows (14)
198
198
 
199
199
  | Workflow | Skills Used | Purpose |
200
200
  |----------|-------------|---------|
@@ -211,6 +211,7 @@ See [CATALOG.md](CATALOG.md) for full metadata, inputs, outputs, and workflow li
211
211
  | `assess-landscape-connectivity` | 1 → 2 → 15 → 5 → 12 | Corridor and patch importance |
212
212
  | `run-population-viability` | 1 → 3 → 16 → 5 → 12 | PVA and extinction risk |
213
213
  | `run-conservation-prioritization` | 1 → 2 → 6 → 17 → 12 | Reserve network design |
214
+ | `run-acoustic-monitoring` | 1 → 14 → 3 → 5 → 12 | Soundscape indices and species detection |
214
215
 
215
216
  ---
216
217
 
@@ -309,7 +310,7 @@ ecological-agent-skills/
309
310
  │ ├── resources/ ← checklists, glossaries, templates
310
311
  │ ├── examples/ ← usage prompt examples
311
312
  │ └── scripts/ ← R/Python helpers
312
- ├── workflows/ ← 13 multi-step playbooks
313
+ ├── workflows/ ← 14 multi-step playbooks
313
314
  │ └── <workflow-name>/
314
315
  │ └── WORKFLOW.md
315
316
  ├── templates/ ← reusable prompts, reports, checklists
@@ -0,0 +1,218 @@
1
+ # Skill Selection Decision Tree
2
+
3
+ Use this guide to identify which skill (or sequence of skills) to invoke based on your data type and analytical goal. Start at the top and follow the branches that match your situation.
4
+
5
+ ---
6
+
7
+ ## Quick Reference Table
8
+
9
+ | If your data is... | And your goal is... | Start with skill |
10
+ |--------------------|---------------------|------------------|
11
+ | Occurrence records (species coordinates) | Download, clean, validate | ecological-data-foundation |
12
+ | Occurrence records + environmental layers | Model species distribution | ecological-data-foundation → geoprocessing-for-ecology → predictive-modeling-best-practices → species-distribution-modeling |
13
+ | Raster / vector layers only | Reproject, clip, stack, extract values | geoprocessing-for-ecology |
14
+ | Tabular ecological data (1 response, N predictors) | Statistical test or regression | biostatistics-workbench |
15
+ | Species × site matrix | Community composition / ordination | ecological-data-foundation → community-ecology-ordination |
16
+ | Replicated detection/non-detection surveys | Occupancy and detection probability | ecological-data-foundation → occupancy-and-detection |
17
+ | Before/after, control/impact data | Quantify disturbance effect (BACI) | ecological-data-foundation → ecological-impact-assessment |
18
+ | Time-indexed environmental variable | Trend, breakpoint, anomaly | ecological-data-foundation → environmental-time-series |
19
+ | Land cover + biophysical layers | Ecosystem services mapping | ecological-data-foundation → geoprocessing-for-ecology → ecosystem-services-assessment |
20
+ | Camera trap image records | Detection events, diel activity | camera-trap-processing (→ occupancy-and-detection) |
21
+ | Audio recordings (WAV/FLAC) | Soundscape indices, species detection | acoustic-monitoring (→ environmental-time-series) |
22
+ | Habitat patches + land cover raster | Landscape connectivity, corridors | geoprocessing-for-ecology → landscape-connectivity |
23
+ | Vital rates (survival, fecundity by stage) | Population viability, IUCN Criterion E | biostatistics-workbench → population-viability-analysis |
24
+ | Suitability maps + planning units | Reserve design, prioritization | species-distribution-modeling → spatial-prioritization |
25
+ | Any fitted model | Evaluate performance, quantify uncertainty | model-validation-and-uncertainty |
26
+ | Any completed analysis | Audit trail, reproducibility checklist | reproducible-ecology-pipeline |
27
+
28
+ ---
29
+
30
+ ## Decision Tree — Detailed
31
+
32
+ ### Step 1: What type of data do you have?
33
+
34
+ ```
35
+ Root
36
+ ├── A. Occurrence records (species lat/lon) → go to Branch A
37
+ ├── B. Spatial rasters or vectors only → go to Branch B
38
+ ├── C. Tabular survey data (sites × variables) → go to Branch C
39
+ ├── D. Time series data → go to Branch D
40
+ ├── E. Multimedia data (images / audio) → go to Branch E
41
+ └── F. Model outputs (predictions, suitability) → go to Branch F
42
+ ```
43
+
44
+ ---
45
+
46
+ ### Branch A — Occurrence Records
47
+
48
+ ```
49
+ A. Occurrence records
50
+ ├── A1. Raw / uncleaned records?
51
+ │ └── ALWAYS start with: ecological-data-foundation
52
+ │ (cleaning, QA, deduplication, coordinate flags)
53
+
54
+ ├── A2. Goal: map species distribution / suitability?
55
+ │ └── ecological-data-foundation
56
+ │ → geoprocessing-for-ecology (extract env. values)
57
+ │ → predictive-modeling-best-practices (predictor selection, CV design)
58
+ │ → species-distribution-modeling (MaxEnt / RF / BRT / ensemble)
59
+ │ → model-validation-and-uncertainty (AUC, TSS, uncertainty maps)
60
+ │ → reproducible-ecology-pipeline
61
+
62
+ ├── A3. Goal: occupancy and detection probability?
63
+ │ → Replicated visit data required (detection history matrix)
64
+ │ └── ecological-data-foundation
65
+ │ → occupancy-and-detection
66
+ │ → biostatistics-workbench
67
+ │ → reproducible-ecology-pipeline
68
+
69
+ └── A4. Multiple species simultaneously?
70
+ └── Follow workflow: run-multispecies-screening
71
+ (ecological-data-foundation → geoprocessing-for-ecology
72
+ → species-distribution-modeling (loop) → model-validation-and-uncertainty)
73
+ ```
74
+
75
+ ---
76
+
77
+ ### Branch B — Spatial Rasters or Vectors
78
+
79
+ ```
80
+ B. Spatial rasters or vectors
81
+ ├── B1. Need to reproject, clip, resample, stack layers?
82
+ │ └── geoprocessing-for-ecology (standalone)
83
+
84
+ ├── B2. Need to extract environmental values at occurrence points?
85
+ │ └── geoprocessing-for-ecology (stack_and_extract.py)
86
+ │ → then continue with predictive-modeling-best-practices
87
+
88
+ ├── B3. Land cover raster + biophysical data → ecosystem services?
89
+ │ └── ecological-data-foundation → geoprocessing-for-ecology
90
+ │ → ecosystem-services-assessment → reproducible-ecology-pipeline
91
+
92
+ └── B4. Habitat patches + dispersal distance → connectivity?
93
+ └── geoprocessing-for-ecology → landscape-connectivity
94
+ ```
95
+
96
+ ---
97
+
98
+ ### Branch C — Tabular Survey Data
99
+
100
+ ```
101
+ C. Tabular survey data
102
+ ├── C1. Single response variable (abundance, richness, biomass)?
103
+ │ └── ecological-data-foundation → biostatistics-workbench
104
+ │ (GLM/GLMM, hypothesis testing, model selection)
105
+
106
+ ├── C2. Species × site matrix (multiple species, multiple sites)?
107
+ │ └── ecological-data-foundation → community-ecology-ordination
108
+ │ (NMDS, PCA, PCoA, diversity indices, PERMANOVA)
109
+
110
+ ├── C3. Before/after, control/impact sites (BACI)?
111
+ │ └── ecological-data-foundation → ecological-impact-assessment
112
+ │ → biostatistics-workbench → model-validation-and-uncertainty
113
+
114
+ ├── C4. Vital rates by age/stage class?
115
+ │ └── biostatistics-workbench → population-viability-analysis
116
+ │ (lambda, elasticity, stochastic PVA, IUCN Criterion E)
117
+
118
+ └── C5. Planning units + species features?
119
+ └── species-distribution-modeling → spatial-prioritization
120
+ (prioritizr/Marxan, representation targets, reserve design)
121
+ ```
122
+
123
+ ---
124
+
125
+ ### Branch D — Time Series Data
126
+
127
+ ```
128
+ D. Time series data
129
+ ├── D1. Environmental signal (NDVI, temperature, rainfall)?
130
+ │ └── ecological-data-foundation → environmental-time-series
131
+ │ (Mann-Kendall trend, BFAST breakpoint, anomaly detection)
132
+
133
+ ├── D2. Biodiversity metric over time (species index, acoustic)?
134
+ │ └── ecological-data-foundation → environmental-time-series
135
+ │ → biostatistics-workbench (if inferential comparison needed)
136
+
137
+ └── D3. Fire risk or land cover change?
138
+ └── Follow workflow: build-fire-risk-map or analyze-environmental-change
139
+ (ecological-data-foundation → geoprocessing-for-ecology
140
+ → ecological-impact-assessment → environmental-time-series)
141
+ ```
142
+
143
+ ---
144
+
145
+ ### Branch E — Multimedia Data
146
+
147
+ ```
148
+ E. Multimedia data
149
+ ├── E1. Camera trap images?
150
+ │ └── camera-trap-processing
151
+ │ (detection events, diel activity, trap effort table)
152
+ │ → occupancy-and-detection (if occupancy estimation needed)
153
+
154
+ └── E2. Audio recordings (WAV/FLAC)?
155
+ └── acoustic-monitoring
156
+ (ACI/NDSI/ADI soundscape indices, BirdNET species detection)
157
+ → environmental-time-series (if temporal trend analysis needed)
158
+ ```
159
+
160
+ ---
161
+
162
+ ### Branch F — Model Outputs
163
+
164
+ ```
165
+ F. Model outputs
166
+ ├── F1. Model fitted; need performance metrics?
167
+ │ └── model-validation-and-uncertainty
168
+ │ (AUC, TSS, RMSE, calibration, sensitivity, uncertainty maps)
169
+
170
+ ├── F2. Suitability maps; need conservation priorities?
171
+ │ └── spatial-prioritization
172
+ │ (planning units, targets, BLM, prioritizr/Marxan)
173
+
174
+ └── F3. Any outputs; need reproducibility checklist?
175
+ └── reproducible-ecology-pipeline
176
+ (parameter manifest, decision log, audit trail)
177
+ ```
178
+
179
+ ---
180
+
181
+ ## Disambiguation Rules
182
+
183
+ Apply exactly one rule when two skills seem applicable.
184
+
185
+ ### ecological-data-foundation vs. geoprocessing-for-ecology
186
+ - **ecological-data-foundation**: cleaning, deduplication, column validation, coordinate QA.
187
+ - **geoprocessing-for-ecology**: spatial operations on rasters/vectors (reproject, mask, stack, extract).
188
+ - If the task involves occurrence records AND spatial operations, run **ecological-data-foundation first**.
189
+
190
+ ### predictive-modeling-best-practices vs. model-validation-and-uncertainty
191
+ - **predictive-modeling-best-practices**: BEFORE fitting — predictor selection, collinearity, CV design.
192
+ - **model-validation-and-uncertainty**: AFTER fitting — metrics, calibration, uncertainty quantification.
193
+ - Never reverse this order.
194
+
195
+ ### species-distribution-modeling vs. occupancy-and-detection
196
+ - **species-distribution-modeling**: suitability surface from presence/absence + environmental predictors.
197
+ - **occupancy-and-detection**: occupancy probability (psi) + detection (p) from replicated visit data.
198
+
199
+ ### ecological-impact-assessment vs. biostatistics-workbench
200
+ - **ecological-impact-assessment**: data with explicit before/after + control/impact structure (BACI), or landscape fragmentation metrics.
201
+ - **biostatistics-workbench**: statistical comparisons without BACI design.
202
+
203
+ ### biostatistics-workbench vs. community-ecology-ordination
204
+ - **biostatistics-workbench**: one response variable, one or more predictors.
205
+ - **community-ecology-ordination**: species × site matrix as primary input (multivariate assemblage data).
206
+
207
+ ---
208
+
209
+ ## Minimum Records Quick Reference
210
+
211
+ | Analysis | Do NOT proceed below | Recommended |
212
+ |----------|----------------------|-------------|
213
+ | SDM (any algorithm) | 10 occurrences | >= 30 |
214
+ | Occupancy model | 15 sites | >= 30 sites, >= 3 visits |
215
+ | BACI mixed model | 5 control + 5 impact sites | >= 10 per group |
216
+ | Community ordination | 5 sites | >= 10 sites |
217
+ | GLM (single predictor) | 20 observations | >= 50 |
218
+ | Stochastic PVA | 5 years of count data | >= 10 years |
@@ -0,0 +1,88 @@
1
+ # GBIF Credentials Setup
2
+
3
+ GBIF credentials are **optional** but enable async downloads with a citable DOI,
4
+ which is required for reproducible publications and for datasets > 100,000 records.
5
+
6
+ Without credentials, `download_from_gbif.py` falls back to `occ.search`
7
+ (no DOI, max ~100,000 records, still functional for most studies).
8
+
9
+ ---
10
+
11
+ ## Step 1 — Create a free GBIF account
12
+
13
+ 1. Go to https://www.gbif.org
14
+ 2. Click **Login** > **Register**
15
+ 3. Fill in username, email, and password
16
+ 4. Confirm your email address
17
+
18
+ ---
19
+
20
+ ## Step 2 — Set environment variables
21
+
22
+ Set these three variables in your shell before running any skill:
23
+
24
+ ```bash
25
+ # Linux / macOS — add to ~/.bashrc or ~/.zshrc
26
+ export GBIF_USER="your_gbif_username"
27
+ export GBIF_PWD="your_gbif_password"
28
+ export GBIF_EMAIL="your_email@example.com"
29
+ ```
30
+
31
+ ```powershell
32
+ # Windows — PowerShell (current session only)
33
+ $env:GBIF_USER = "your_gbif_username"
34
+ $env:GBIF_PWD = "your_gbif_password"
35
+ $env:GBIF_EMAIL = "your_email@example.com"
36
+ ```
37
+
38
+ ```powershell
39
+ # Windows — PowerShell (permanent, per user)
40
+ [System.Environment]::SetEnvironmentVariable("GBIF_USER", "your_gbif_username", "User")
41
+ [System.Environment]::SetEnvironmentVariable("GBIF_PWD", "your_gbif_password", "User")
42
+ [System.Environment]::SetEnvironmentVariable("GBIF_EMAIL", "your_email@example.com", "User")
43
+ ```
44
+
45
+ If using conda, you can also add them to `environment.yaml` under `variables:`
46
+ (not recommended for shared/committed files — use a `.env` file instead).
47
+
48
+ ---
49
+
50
+ ## Step 3 — Verify
51
+
52
+ ```bash
53
+ python -c "import os; print(os.getenv('GBIF_USER'))"
54
+ ```
55
+
56
+ Should print your GBIF username.
57
+
58
+ ---
59
+
60
+ ## When credentials are used vs. not used
61
+
62
+ | Scenario | Method used | DOI | Max records |
63
+ |----------|-------------|-----|-------------|
64
+ | Credentials set + dataset > 100k records | Async download | Yes | Unlimited |
65
+ | Credentials set + dataset <= 100k records | `occ.search` | No | ~100k |
66
+ | No credentials | `occ.search` fallback | No | ~100k |
67
+
68
+ ---
69
+
70
+ ## Citing GBIF downloads
71
+
72
+ When credentials are set and an async download completes, the script saves a
73
+ `download_metadata_*.txt` file containing the DOI. Cite it in publications as:
74
+
75
+ > GBIF.org (YYYY) GBIF Occurrence Download https://doi.org/10.15468/dl.XXXXXX
76
+
77
+ ---
78
+
79
+ ## Troubleshooting
80
+
81
+ **"GBIF async download requires env vars"** — credentials not set; see Step 2 above.
82
+
83
+ **"occ.count returned 400"** — `hasCoordinate` is not supported by the count endpoint;
84
+ this is a known GBIF API limitation. The script handles this silently.
85
+
86
+ **pygbif TypeError on Python 3.14** — `pygbif` has an API incompatibility with
87
+ Python 3.14's `requests` session. The script automatically falls back to direct
88
+ HTTP calls to the GBIF REST API. No action needed.
@@ -0,0 +1,197 @@
1
+ # Glossary — Quantitative Ecology
2
+
3
+ Trilingual reference (English / Portuguese / Spanish) for terms used across all 17 skills.
4
+ Entries are grouped by theme. Definitions are written for the analytical context of this repository.
5
+
6
+ ---
7
+
8
+ ## How to Use
9
+
10
+ Each entry lists:
11
+ - **Term** — canonical English term used in scripts and documentation
12
+ - **PT** — Portuguese equivalent (Brazilian usage)
13
+ - **ES** — Spanish equivalent
14
+ - **Definition** — brief definition in the analytical context of this repository
15
+ - **Skill** — the skill where this term most commonly appears
16
+
17
+ ---
18
+
19
+ ## 1. Occurrence Data & Data Quality
20
+
21
+ | Term | PT | ES | Definition | Skill |
22
+ |------|----|----|------------|-------|
23
+ | **occurrence record** | registro de ocorrência | registro de ocurrencia | A documented observation of a species at a specific location and time | ecological-data-foundation |
24
+ | **presence-only data** | dados de presença apenas | datos solo de presencia | Records where only species presence is documented, not confirmed absence | ecological-data-foundation |
25
+ | **presence-absence data** | dados de presença-ausência | datos de presencia-ausencia | Records confirming both where a species was detected AND surveyed but not detected | ecological-data-foundation |
26
+ | **background points** | pontos de background | puntos de fondo | Pseudo-absences randomly sampled from the study area for presence-background models | species-distribution-modeling |
27
+ | **spatial thinning** | rarefação espacial | rarefacción espacial | Removing records that fall within the same grid cell to reduce spatial autocorrelation | ecological-data-foundation |
28
+ | **spatial autocorrelation** | autocorrelação espacial | autocorrelación espacial | Statistical dependence between observations that decreases with geographic distance | predictive-modeling-best-practices |
29
+ | **duplicate record** | registro duplicado | registro duplicado | Record sharing the same species, coordinates, and date as another record | ecological-data-foundation |
30
+ | **coordinate uncertainty** | incerteza de coordenadas | incertidumbre de coordenadas | The radius (in metres) within which the true observation location may lie | ecological-data-foundation |
31
+ | **georeferencing** | georreferenciamento | georreferenciación | The process of assigning geographic coordinates to a locality description | ecological-data-foundation |
32
+ | **QA flag** | marcador de qualidade | bandera de calidad | A label applied to a record indicating a data quality issue (e.g. COORD_ZERO) | ecological-data-foundation |
33
+ | **DOI (data citation)** | DOI de citação de dados | DOI de citación de datos | A persistent digital identifier for a GBIF dataset download, used in publications | ecological-data-foundation |
34
+
35
+ ---
36
+
37
+ ## 2. Species Distribution Modelling (SDM / ENM)
38
+
39
+ | Term | PT | ES | Definition | Skill |
40
+ |------|----|----|------------|-------|
41
+ | **SDM** | MDE (modelo de distribuição de espécie) | MDE (modelo de distribución de especie) | Statistical model relating species occurrences to environmental predictors to produce a suitability map | species-distribution-modeling |
42
+ | **ENM** | MEN (modelagem de nicho ecológico) | MNE (modelado de nicho ecológico) | Approach that models the ecological niche of a species from occurrence data and environmental layers | species-distribution-modeling |
43
+ | **MaxEnt** | MaxEnt | MaxEnt | Maximum entropy algorithm for presence-background SDM; implemented in `maxnet` | species-distribution-modeling |
44
+ | **BRT** | BRT (árvores de regressão por boosting) | BRT (árboles de regresión potenciados) | Gradient Boosting Trees; ensemble ML method for SDM (Elith et al. 2008) | species-distribution-modeling |
45
+ | **ensemble model** | modelo ensemble | modelo ensamblado | Combination of predictions from multiple algorithms to reduce model uncertainty | species-distribution-modeling |
46
+ | **suitability map** | mapa de adequabilidade | mapa de idoneidad | Raster where each pixel represents the predicted habitat suitability for a species | species-distribution-modeling |
47
+ | **habitat suitability** | adequabilidade de habitat | idoneidad de hábitat | The degree to which a location's environmental conditions match species requirements | species-distribution-modeling |
48
+ | **calibration area (M)** | área de calibração (M) | área de calibración (M) | The geographic region accessible to a species and used to define background for SDM calibration | species-distribution-modeling |
49
+ | **regularisation multiplier (RM)** | multiplicador de regularização | multiplicador de regularización | MaxEnt parameter controlling model complexity; higher values produce smoother predictions | species-distribution-modeling |
50
+ | **feature class (FC)** | classe de feature | clase de característica | MaxEnt parameter controlling the shape of response curves (L, Q, P, H, T) | species-distribution-modeling |
51
+ | **variable importance** | importância de variável | importancia de variable | Relative contribution of each predictor to a model's predictions | predictive-modeling-best-practices |
52
+ | **partial response curve** | curva de resposta parcial | curva de respuesta parcial | Plot showing the modelled relationship between a predictor and suitability, holding others constant | species-distribution-modeling |
53
+ | **future projection** | projeção futura | proyección futura | Application of a calibrated SDM to future climate scenarios (SSP/RCP) | species-distribution-modeling |
54
+ | **climate scenario** | cenário climático | escenario climático | A standardised future climate trajectory (e.g. SSP2-4.5, SSP5-8.5) from CMIP6 | species-distribution-modeling |
55
+
56
+ ---
57
+
58
+ ## 3. Environmental Predictors
59
+
60
+ | Term | PT | ES | Definition | Skill |
61
+ |------|----|----|------------|-------|
62
+ | **bioclimatic variable** | variável bioclimática | variable bioclimática | Derived climate variable (e.g. BIO1–BIO19) capturing ecologically meaningful signals | geoprocessing-for-ecology |
63
+ | **BIO1** | BIO1 — temperatura média anual | BIO1 — temperatura media anual | Mean Annual Temperature (deg C × 10 in raw WorldClim/CHELSA) | geoprocessing-for-ecology |
64
+ | **BIO12** | BIO12 — precipitação anual | BIO12 — precipitación anual | Annual Precipitation (mm) | geoprocessing-for-ecology |
65
+ | **predictor stack** | pilha de preditores | pila de predictores | Multi-layer raster containing all environmental variables aligned to the same grid | geoprocessing-for-ecology |
66
+ | **collinearity** | colinearidade | colinealidad | Strong correlation between predictors that inflates uncertainty and reduces interpretability | predictive-modeling-best-practices |
67
+ | **VIF** | VIF (fator de inflação da variância) | VIF (factor de inflación de varianza) | Variance Inflation Factor; values > 10 indicate problematic collinearity | predictive-modeling-best-practices |
68
+ | **CHELSA** | CHELSA | CHELSA | Climatologies at High resolution for the Earth's Land Surface Areas; 1 km global climate dataset | geoprocessing-for-ecology |
69
+ | **WorldClim** | WorldClim | WorldClim | Global climate data at 1 km resolution; widely used for SDM | geoprocessing-for-ecology |
70
+ | **ERA5-Land** | ERA5-Land | ERA5-Land | ECMWF reanalysis product providing hourly climate data at ~9 km resolution via Copernicus CDS | geoprocessing-for-ecology |
71
+ | **raster** | raster | raster | Grid of cells (pixels) covering a geographic area, each storing a value | geoprocessing-for-ecology |
72
+ | **CRS** | SRC (sistema de referência de coordenadas) | SRC (sistema de referencia de coordenadas) | Coordinate Reference System defining how geographic coordinates are projected | geoprocessing-for-ecology |
73
+ | **reprojection** | reprojeção | reproyección | Converting raster or vector data from one CRS to another | geoprocessing-for-ecology |
74
+ | **spatial resolution** | resolução espacial | resolución espacial | The size of each pixel in a raster, typically expressed in metres or decimal degrees | geoprocessing-for-ecology |
75
+
76
+ ---
77
+
78
+ ## 4. Model Validation & Uncertainty
79
+
80
+ | Term | PT | ES | Definition | Skill |
81
+ |------|----|----|------------|-------|
82
+ | **AUC** | AUC (área sob a curva ROC) | AUC (área bajo la curva ROC) | Area Under the ROC Curve; ranges 0.5 (random) to 1.0 (perfect discrimination) | model-validation-and-uncertainty |
83
+ | **TSS** | TSS (true skill statistic) | TSS (estadístico de habilidad verdadera) | True Skill Statistic = sensitivity + specificity - 1; ranges -1 to 1, threshold-independent | model-validation-and-uncertainty |
84
+ | **partial ROC** | ROC parcial | ROC parcial | ROC analysis restricted to ecologically relevant omission rates (OR10 < 0.1) | model-validation-and-uncertainty |
85
+ | **omission rate** | taxa de omissão | tasa de omisión | Proportion of presence records incorrectly predicted as unsuitable; OR10 uses 10th percentile threshold | model-validation-and-uncertainty |
86
+ | **calibration** | calibração | calibración | Assessment of whether predicted probabilities match observed occurrence rates | model-validation-and-uncertainty |
87
+ | **cross-validation** | validação cruzada | validación cruzada | Model evaluation using multiple train/test splits to estimate generalisation performance | predictive-modeling-best-practices |
88
+ | **spatial cross-validation** | validação cruzada espacial | validación cruzada espacial | Cross-validation where folds are spatially blocked to avoid overly optimistic AUC estimates | predictive-modeling-best-practices |
89
+ | **k-fold** | k-fold | k-fold | Cross-validation strategy dividing data into k equally sized subsets | predictive-modeling-best-practices |
90
+ | **uncertainty map** | mapa de incerteza | mapa de incertidumbre | Raster showing the standard deviation of ensemble model predictions across pixels | model-validation-and-uncertainty |
91
+ | **MOP** | MOP (análise de mobilidade de preditores) | MOP (análisis de movilidad de predictores) | Multivariate Overlap Procedure; identifies where transfer conditions are outside training range | model-validation-and-uncertainty |
92
+ | **extrapolation risk** | risco de extrapolação | riesgo de extrapolación | Uncertainty arising when a model is applied to conditions outside its calibration range | model-validation-and-uncertainty |
93
+
94
+ ---
95
+
96
+ ## 5. Statistical Methods
97
+
98
+ | Term | PT | ES | Definition | Skill |
99
+ |------|----|----|------------|-------|
100
+ | **GLM** | GLM (modelo linear generalizado) | GLM (modelo lineal generalizado) | Generalised Linear Model; extends linear regression to non-normal response distributions | biostatistics-workbench |
101
+ | **GLMM** | GLMM (modelo misto generalizado) | GLMM (modelo mixto generalizado) | GLM with random effects to account for grouped or repeated-measures data | biostatistics-workbench |
102
+ | **AIC** | AIC (critério de informação de Akaike) | AIC (criterio de información de Akaike) | Model selection criterion balancing fit and complexity; lower is better | biostatistics-workbench |
103
+ | **BACI** | BACI (antes-depois, controle-impacto) | BACI (antes-después, control-impacto) | Before-After Control-Impact design; standard framework for detecting ecological impacts | ecological-impact-assessment |
104
+ | **PERMANOVA** | PERMANOVA | PERMANOVA | Permutational MANOVA; tests for differences in multivariate composition between groups | community-ecology-ordination |
105
+ | **NMDS** | NMDS (escalonamento multidimensional não-métrico) | NMDS (escalamiento multidimensional no métrico) | Non-metric Multidimensional Scaling; ordination technique for community composition data | community-ecology-ordination |
106
+ | **PCA** | PCA (análise de componentes principais) | PCA (análisis de componentes principales) | Principal Component Analysis; linear dimensionality reduction | biostatistics-workbench |
107
+ | **beta diversity** | diversidade beta | diversidad beta | Variation in species composition between sites; complement to alpha diversity | community-ecology-ordination |
108
+ | **Mann-Kendall** | Mann-Kendall | Mann-Kendall | Non-parametric test for monotonic trends in time series; robust to non-normality | environmental-time-series |
109
+ | **BFAST** | BFAST | BFAST | Breaks For Additive Season and Trend; detects structural breakpoints in time series | environmental-time-series |
110
+
111
+ ---
112
+
113
+ ## 6. Occupancy & Detection
114
+
115
+ | Term | PT | ES | Definition | Skill |
116
+ |------|----|----|------------|-------|
117
+ | **occupancy (psi)** | ocupância (psi) | ocupancia (psi) | Probability that a site is occupied by a species (ψ); estimated separately from detection | occupancy-and-detection |
118
+ | **detection probability (p)** | probabilidade de detecção (p) | probabilidad de detección (p) | Probability that a species is detected given that it is present at a site | occupancy-and-detection |
119
+ | **imperfect detection** | detecção imperfeita | detección imperfecta | The common situation where p < 1, meaning absences may be false negatives | occupancy-and-detection |
120
+ | **detection history** | histórico de detecção | historial de detección | Matrix of 1/0/NA values encoding whether a species was detected on each visit to each site | occupancy-and-detection |
121
+ | **naive occupancy** | ocupância ingênua | ocupancia ingenua | Simple proportion of sites where species was detected, ignoring imperfect detection | occupancy-and-detection |
122
+ | **single-season model** | modelo de temporada única | modelo de temporada única | Occupancy model assuming sites are closed to colonisation/extinction within the survey season | occupancy-and-detection |
123
+ | **RAI** | IAR (índice de atividade relativa) | IAI (índice de actividad relativa) | Relative Activity Index for camera traps: detections per 100 trap-nights | camera-trap-processing |
124
+ | **independence threshold** | limiar de independência | umbral de independencia | Minimum time interval between events of the same species at the same station (default 30 min) | camera-trap-processing |
125
+
126
+ ---
127
+
128
+ ## 7. Acoustic Monitoring
129
+
130
+ | Term | PT | ES | Definition | Skill |
131
+ |------|----|----|------------|-------|
132
+ | **ACI** | ACI (índice de complexidade acústica) | ACI (índice de complejidad acústica) | Acoustic Complexity Index; measures heterogeneity in amplitude changes within a recording | acoustic-monitoring |
133
+ | **NDSI** | NDSI (índice de sonoridade diel normalizado) | NDSI (índice normalizado de sonoridad) | Normalised Difference Soundscape Index; ratio of biophony to anthrophony | acoustic-monitoring |
134
+ | **ADI** | ADI (índice de diversidade acústica) | ADI (índice de diversidad acústica) | Acoustic Diversity Index; analogous to Shannon diversity computed over frequency bands | acoustic-monitoring |
135
+ | **biophony** | biofonia | biofonía | Sounds produced by living organisms; one component of soundscape | acoustic-monitoring |
136
+ | **anthrophony** | antropofonia | antropofonía | Human-generated noise; estimated at high-frequency bands in NDSI | acoustic-monitoring |
137
+ | **soundscape** | paisagem sonora | paisaje sonoro | All the sounds within a defined area; characterised through acoustic indices | acoustic-monitoring |
138
+ | **BirdNET** | BirdNET | BirdNET | Deep-learning classifier for bird species identification from audio recordings | acoustic-monitoring |
139
+
140
+ ---
141
+
142
+ ## 8. Landscape Ecology & Connectivity
143
+
144
+ | Term | PT | ES | Definition | Skill |
145
+ |------|----|----|------------|-------|
146
+ | **habitat patch** | fragmento de habitat | parche de hábitat | Contiguous area of suitable habitat separated from other patches by a matrix | landscape-connectivity |
147
+ | **resistance surface** | superfície de resistência | superficie de resistencia | Raster where pixel values represent the cost of movement through each land cover type | landscape-connectivity |
148
+ | **corridor** | corredor | corredor | Strip of habitat facilitating animal movement between patches | landscape-connectivity |
149
+ | **IIC** | IIC (índice de conectividade integral) | IIC (índice de conectividad integral) | Integral Index of Connectivity; graph-theoretic metric combining area and link importance | landscape-connectivity |
150
+ | **dPC** | dPC | dPC | Node removal importance metric based on Probability of Connectivity (PC); used to rank patches | landscape-connectivity |
151
+ | **Circuitscape** | Circuitscape | Circuitscape | Circuit theory-based tool for modelling landscape connectivity; identifies pinchpoints | landscape-connectivity |
152
+ | **fragmentation** | fragmentação | fragmentación | Process by which a habitat is divided into smaller, more isolated patches | ecological-impact-assessment |
153
+ | **MESH** | MESH (habitat efetivo de malha) | MESH (hábitat efectivo de malla) | Effective Mesh Size; fragmentation metric inversely proportional to isolation | ecological-impact-assessment |
154
+
155
+ ---
156
+
157
+ ## 9. Population Ecology
158
+
159
+ | Term | PT | ES | Definition | Skill |
160
+ |------|----|----|------------|-------|
161
+ | **lambda (lambda)** | taxa de crescimento populacional (lambda) | tasa de crecimiento poblacional (lambda) | Finite rate of population increase; lambda > 1 = growing, < 1 = declining | population-viability-analysis |
162
+ | **elasticity** | elasticidade | elasticidad | Proportional change in lambda resulting from a proportional change in a vital rate | population-viability-analysis |
163
+ | **sensitivity** | sensibilidade | sensibilidad | Absolute change in lambda from an absolute change in a vital rate | population-viability-analysis |
164
+ | **PVA** | AVP (análise de viabilidade populacional) | AVP (análisis de viabilidad poblacional) | Population Viability Analysis; simulation-based method to estimate extinction probability | population-viability-analysis |
165
+ | **quasi-extinction threshold** | limiar de quase-extinção | umbral de cuasi-extinción | Population size below which a population is considered functionally extinct | population-viability-analysis |
166
+ | **Leslie matrix** | matriz de Leslie | matriz de Leslie | Age-structured population projection matrix | population-viability-analysis |
167
+ | **Lefkovitch matrix** | matriz de Lefkovitch | matriz de Lefkovitch | Stage-structured population projection matrix | population-viability-analysis |
168
+ | **IUCN Criterion E** | Critério E da IUCN | Criterio E de la UICN | Quantitative extinction risk criterion using PVA; >= 20% probability of extinction in 20 yrs = EN | population-viability-analysis |
169
+
170
+ ---
171
+
172
+ ## 10. Conservation Planning
173
+
174
+ | Term | PT | ES | Definition | Skill |
175
+ |------|----|----|------------|-------|
176
+ | **planning unit** | unidade de planejamento | unidad de planificación | Spatial unit (polygon or raster cell) that can be included or excluded in a reserve network | spatial-prioritization |
177
+ | **representation target** | meta de representação | meta de representación | The proportion of a feature's distribution that should be captured within selected planning units | spatial-prioritization |
178
+ | **BLM** | BLM (modificador de comprimento de borda) | BLM (modificador de longitud de límite) | Boundary Length Modifier; penalty for fragmented solutions in Marxan/prioritizr | spatial-prioritization |
179
+ | **irreplaceability** | insubstituibilidade | irreemplazabilidad | Frequency with which a planning unit appears in all near-optimal solutions | spatial-prioritization |
180
+ | **minimum set problem** | problema de conjunto mínimo | problema de conjunto mínimo | Conservation planning objective: meet all targets at minimum cost | spatial-prioritization |
181
+ | **30x30** | 30x30 | 30x30 | Global biodiversity target to protect 30% of land and sea by 2030 (Kunming-Montreal GBF) | spatial-prioritization |
182
+ | **locked-in area** | área bloqueada (inclusão) | área bloqueada (inclusión) | Planning unit forced into the solution regardless of cost (e.g. existing protected area) | spatial-prioritization |
183
+ | **locked-out area** | área bloqueada (exclusão) | área bloqueada (exclusión) | Planning unit excluded from the solution regardless of cost (e.g. urban, legally unavailable) | spatial-prioritization |
184
+
185
+ ---
186
+
187
+ ## 11. Reproducibility & Provenance
188
+
189
+ | Term | PT | ES | Definition | Skill |
190
+ |------|----|----|------------|-------|
191
+ | **decision log** | registro de decisões | registro de decisiones | File documenting analytical choices, rationale, and alternatives at each pipeline step | reproducible-ecology-pipeline |
192
+ | **parameter manifest** | manifesto de parâmetros | manifiesto de parámetros | Complete record of all settings used to produce a given model or output file | reproducible-ecology-pipeline |
193
+ | **provenance** | procedência | procedencia | Traceable history of how a dataset or output was produced, from raw data to final result | reproducible-ecology-pipeline |
194
+ | **ODMAP** | ODMAP | ODMAP | Overview, Data, Model, Assessment, Prediction — standard SDM reporting protocol (Zurell et al. 2020) | reproducible-ecology-pipeline |
195
+ | **DOI** | DOI | DOI | Digital Object Identifier; persistent link to a citable dataset or publication | ecological-data-foundation |
196
+ | **renv** | renv | renv | R package for project-level dependency management and reproducible environments | reproducible-ecology-pipeline |
197
+ | **SPDX** | SPDX | SPDX | Software Package Data Exchange standard for expressing license information in source files | reproducible-ecology-pipeline |