This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from EcoJulia/gd/dataframes-mask
Add mask and mask! for DataFrames
- Loading branch information
Showing
5 changed files
with
225 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "SimpleSDMLayers" | ||
uuid = "2c645270-77db-11e9-22c3-0f302a89c64c" | ||
authors = ["Timothée Poisot <[email protected]>", "Gabriel Dansereau <[email protected]>"] | ||
version = "0.4.5" | ||
version = "0.4.6" | ||
|
||
[deps] | ||
ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
# Working with DataFrames | ||
|
||
Both `SimpleSDMLayers.jl` and `GBIF.jl` offer an optional integration with the | ||
`DataFrames.jl` package. Therefore, our [previous | ||
example](https://ecojulia.github.io/SimpleSDMLayers.jl/latest/examples/gbif/) | ||
with the kingfisher *Megaceryle alcyon* could also be approached with a | ||
`DataFrame`-centered workflow. | ||
|
||
We will illustrate this using the same data and producing the same figures as in | ||
the previous example. To do so, we will use `GBIF.jl` to produce the occurrence | ||
`DataFrame` we will use throughout this example. However, it is also possible to | ||
use a `DataFrame` of your choosing instead of one generated by `GBIF.jl`, as | ||
long as it holds one occurrence per row, a column with the latitude coordinates, | ||
and a column with longitude coordinates. For the rest, it can hold whatever | ||
information you like. Most of our functions assume by default that the | ||
coordinates are stored in columns named `:latitude` and `:longitude` (the order | ||
doesn't matter), but you can generally specify other names with `latitude = | ||
:lat` in case you don't want to rename them (we will show you how below). | ||
|
||
So let's start by getting our data: | ||
|
||
```julia | ||
# Load packages | ||
using SimpleSDMLayers | ||
using GBIF | ||
using Plots | ||
using Statistics | ||
# Load DataFrames too | ||
using DataFrames | ||
|
||
# Load environmental data | ||
temperature, precipitation = worldclim([1,12]) | ||
|
||
# Get GBIF occurrences | ||
kingfisher = GBIF.taxon("Megaceryle alcyon", strict=true) | ||
kf_occurrences = occurrences(kingfisher, | ||
"hasCoordinate" => "true", | ||
"decimalLatitude" => (0.0, 65.0), | ||
"decimalLongitude" => (-180.0, -50.0), | ||
"limit" => 200) | ||
for i in 1:4 | ||
occurrences!(kf_occurrences) | ||
end | ||
@info kf_occurrences | ||
|
||
``` | ||
|
||
Once the data is loaded, we can easily convert the environmental layers to a | ||
`DataFrame` with the corresponding coordinates. We can do this for a single | ||
layer: | ||
|
||
```julia | ||
temperature_df = DataFrame(temperature) | ||
first(temperature_df, 5) | ||
``` | ||
|
||
Or for multiple layers at the same time: | ||
|
||
```julia | ||
env_layers = [temperature, precipitation] | ||
env_df = DataFrame(env_layers) | ||
rename!(env_df, :x1 => :temperature, :x2 => :precipitation) | ||
first(env_df, 5) | ||
``` | ||
|
||
`GBIF.jl` allows us to convert a set of occurrences to a `DataFrame` just as | ||
easily: | ||
|
||
```julia | ||
kf_df = DataFrame(kf_occurrences) | ||
last(kf_df, 5) | ||
``` | ||
|
||
We can then extract the temperature values for all the occurrences. | ||
|
||
```julia | ||
temperature[kf_df] | ||
``` | ||
|
||
Or we can clip the layers according to the occurrences: | ||
|
||
```julia | ||
temperature_clip = clip(temperature, kf_df) | ||
precipitation_clip = clip(precipitation, kf_df) | ||
``` | ||
|
||
In case your `DataFrame` has different column names for the coordinates, for | ||
example `:lat` and `:lon`, you can clip it like this: | ||
|
||
```julia | ||
kf_df_shortnames = rename(kf_df, :latitude => :lat, :longitude => :lon) | ||
clip(temperature, kf_df_shortnames; latitude = :lat, longitude = :lon) | ||
``` | ||
|
||
We can finally plot the layer and occurrence values in a similar way to any | ||
`DataFrame` or `Array`. Since there are often many `nothing` values in | ||
the layers, it might be necessary to use `filter!` first: | ||
|
||
```julia | ||
filter!(x -> !isnothing(x.temperature) && !isnothing(x.precipitation), env_df); | ||
histogram2d(env_df.temperature, env_df.precipitation, c = :viridis) | ||
scatter!(temperature_clip[kf_df], precipitation_clip[kf_df], | ||
lab= "", c = :white, msc = :orange) | ||
``` | ||
|
||
To plot the occurrence values over space, you can use: | ||
|
||
```julia | ||
contour(temperature_clip, c = :alpine, title = "Temperature", | ||
frame = :box, fill = true) | ||
scatter!(kf_df.longitude, kf_df.latitude, | ||
lab = "", c = :white, msc = :orange, ms = 2) | ||
``` | ||
|
||
We can finally make a layer with the number of observations per cells: | ||
|
||
```julia | ||
abundance = mask(precipitation_clip, kf_occurrences, Float32) | ||
``` | ||
|
||
A useful trick to visualize sites with occurrences, in contrast with sites | ||
without any occurrence, is to use `replace` or `replace!` to set the values | ||
returned as `0` or `true` by the function `mask()` to `nothing`. This allows us | ||
to first plot a background layer with a uniform colour, covering the whole area | ||
to visualize, then plot the occurrence layer on top using a different colour | ||
scale. | ||
|
||
```julia | ||
abundance_nozeros = replace(abundance, 0 => nothing) | ||
plot(precipitation_clip, c = :lightgrey) | ||
plot!(abundance_nozeros, c = :viridis, clim = extrema(abundance_nozeros)) | ||
``` | ||
|
||
Once again, the cells are rather small, and there are few observations, so this | ||
is not necessarily going to be very informative. As in our other example, to | ||
get a better sense of the distribution of observations, we can get the average | ||
number of observations in a radius of 100km around each cell (we will do so for | ||
a zoomed-in part of the map to save time): | ||
|
||
```julia | ||
zoom = abundance[left = -100.0, right = -75.0, top = 43.0, bottom = 20.0] | ||
buffered = slidingwindow(zoom, Statistics.mean, 100.0) | ||
plot(buffered, c = :lapaz, legend = false, frame = :box) | ||
scatter!(kf_df.longitude, kf_df.latitude, | ||
lab = "", c = :white, msc = :orange, ms = 2, alpha = 0.5) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4b06a3b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
4b06a3b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/31018
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: