Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
Bugs in the BIOCLIM example
Browse files Browse the repository at this point in the history
Fixes #80
  • Loading branch information
tpoisot committed Mar 2, 2021
1 parent b624441 commit 9d076e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/sdm/bioclim.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ cutoff = broadcast(x -> x > 0.05, prediction)
This map can be plotted as we would normally do:

```@example bioclim
plot(prediction, frame=:box, c=:lightgrey) # Just plot a uniform background
plot!(mask(cutoff, predcition), clim=(0,1), c=:bamako)
plot(prediction, frame=:box, c=:lightgrey) # Plot a uniform background
plot!(mask(cutoff, prediction), clim=(0,1), c=:bamako)
scatter!([(o.longitude, o.latitude) for o in obs], ms=4, c=:orange, lab="")
xaxis!("Longitude")
yaxis!("Latitude")
Expand Down

0 comments on commit 9d076e8

Please sign in to comment.