IUCNRedList.jl

API Wrapper for the IUCN Red List.
Author jdiaz97
Popularity
11 Stars
Updated Last
9 Months Ago
Started In
October 2022

IUCNRedList.jl

API Wrapper for IUCN Red List.

version

Are you a data scientist and you are working in biodiversity? you might find this useful.

What this does

Implements all of the functionalities of the IUCN Red List API in an easy to use way.

In some cases, you can call 4 different endpoints from only 1 function, thanks to multiple dispatch.

How it works

Set your token, then use all of the wonderful functionality.

set_token("Your Token")

(If you don't have a token, you can get it here)

Check the multiple methods of the functions. If region is not added as an argument then it will return a global assessment.

You can use ID or Name (scientific) of the species.

For more details, you can check the official API Reference. Nevertheless the functions are pretty well commented in the source code, so pretty much everything you need is here.

Functions

Helpers

version()

To check what version of the IUCN Red List is driving the API

version()

countries()

To get a list of countries

countries()

species_by_country()

To get a list of species by country isocode

species_by_country(isocode::String)

regions()

Region identifiers

regions()

Species details

species_all()

Total Species published, as well as their Red List Category.

species_all(page::Int64)
species_all(page::Int64,region::String)

species_count()

Total Species count.

species_count()
species_count(region::String)

species_citation()

To get the citation for a given species assessment.

species_citation(name::String)
species_citation(name::String,region::String)
species_citation(id::Int64)
species_citation(id::Int64,region::String)

species_by_category()

To get a list of species by category

species_by_category(category::String)

species_indv()

To get information about individual species.

species_indv(name::String)
species_indv(name::String,region::String)
species_indv(id::Int64)
species_indv(id::Int64,region::String)

species_narrative()

To get narrative information about individual species.

Please be aware that the text contains HTML markup in some places for formatting purposes.

species_narrative(name::String)
species_narrative(name::String,region::String)
species_narrative(id::Int64)
species_narrative(id::Int64,region::String)

species_synonyms()

species_synonyms(name::String)

species_common_names()

species_common_names(name::String)

species_occurrence()

species_occurrence(name::String)
species_occurrence(name::String,region::String)
species_occurrence(id::Int64)
species_occurrence(id::Int64,region::String)

species_history()

species_history(name::String)
species_history(name::String,region::String)
species_history(id::Int64)
species_history(id::Int64,region::String)

Other data

threats()

threats(name::String)
threats(name::String,region::String)
threats(id::Int64)
threats(id::Int64,region::String)

habitats()

habitats(name::String)
habitats(name::String,region::String)
habitats(id::Int64)
habitats(id::Int64,region::String)

conservation_measures()

conservation_measure(name::String)
conservation_measure(name::String,region::String)
conservation_measure(id::Int64)
conservation_measure(id::Int64,region::String)

growth_forms()

growth_forms(name::String)
growth_forms(name::String,region::String)
growth_forms(id::Int64)
growth_forms(id::Int64,region::String)

comprehensive_groups()

comprehensive_groups()
comprehensive_groups(group::String)

Native functions

melt_dict()

This will reorganize the dictionary, merging the result with the original dictionary.

melt_dict(dict::Dict)

set_token

This will give you access to the API funcionalities

set_token(IUCNtoken::String)

Usage

using IUCNRedList

set_token("YOUR TOKEN")

res = species_narrative("Quercus robur") # here you have the useful information
res = melt_dict(res) # here you reorder the information more nicely

# I like to see the data as dataframes 
using DataFrames

DataFrame(res) # 1×11 DataFrame

Used By Packages

No packages found.