Skip to content

Commit

Permalink
lower res to iterate faster
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoisot committed Oct 17, 2023
1 parent 34ee605 commit de1f066
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
GeoMakie = "db073c08-6b98-4ee5-b6a4-5efafb3259c6"
Images = "916415d5-f1e6-5110-898d-aaa5f9f070e0"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
1 change: 1 addition & 0 deletions code/pkg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ using Statistics
using StatsBase

using CairoMakie
using GeoMakie
set_theme!()
update_theme!(
backgroundcolor=:transparent,
Expand Down
6 changes: 4 additions & 2 deletions slides.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ We collect BioClim data from CHELSA v1, using `SpeciesDistributionToolkit`
#| echo: true
#| output: false
provider = RasterData(WorldClim2, BioClim)
opts = (; resolution=2.5)
opts = (; resolution=10.0)
temperature = SimpleSDMPredictor(provider, layer=1; opts..., boundingbox...)
```

Expand Down Expand Up @@ -176,7 +176,7 @@ end

## Background points generation

We generate background points proportionally to the distance away from observations, with a 10km buffer around each point with no background point allowed:
We generate background points proportionally to the distance away from observations

```{julia}
#| label: Make the pseudo-absence buffer
Expand Down Expand Up @@ -832,6 +832,8 @@ current_figure()

> What do you think the species was?
Human in the loop *v.* Algorithm in the loop

## Take-home

- building a model is *incremental*
Expand Down

0 comments on commit de1f066

Please sign in to comment.