-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
50 lines (34 loc) · 2.09 KB
/
index.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
title: A Julia toolkit for species distribution data
authors:
- name: Timothée Poisot
affiliation:
- ref: udem
roles: writing
email: [email protected]
corresponding: true
affiliations:
- id: udem
name: Département de Sciences Biologiques, Université de Montréal, Montréal, Canada
bibliography: references.bib
engine: julia
abstract: LATER
---
## Introduction
ref to Kaas 2024 on integration - interoperability is done through interfaces, show some examples
## Application description
### Component packages
### Software information
### Integration with other packages
The **SDT** package benefits from close integration with other packages in the Julia universe. Notably, this includes **Makie** (and all related backends) for plotting and data visualisation, where usual plot types are overloaded for layer and occurrence data. Most data can be exported using the **Tables** interface, which allows data to be consumed by other packages like **DataFrames** and **MLJ**. Interfaces internal to Julia are also implemented whenever they make sense. Layers behave like arrays, are iterable, and broadcastable; occurrences collections are arrays and iterables. Beyong supporting external interfaces, **SDT** defines its own internally. Access to raster data is supported by a trait-based interface for **SimpleSDMDatasets**, and one of the component packages (**OccurrencesInterface** implements a minimalist interface to facilite the consumption of occurrence data.
Internal use of other interfaces like StatsAPI
## Worked out example
In this section, we provide a worked out example of (i) collecting data on historical and future climate, (ii) projecting these data into a new CRS, (iii) collecting occurrence data within a country boundaries, (iv) training a random-forest classifier for the species, and (v) transfering this model to future climate data. This provides an illutration of most of the components of the package.
### Collecting climate data
```{julia}
provider = RasterData{CHELSA2, BioClim}
```
### CS 2
something with clustering?
### CS 3
## References