Ed Baker FLS ARCS

Picture of Ed Baker.

I am an interdisciplinary researcher investigating how technology can be used to monitor biodiversity, in particular using bioacoustic and ecoacoustic approaches.

GitHub | CV | Media | Social

Latest publications

Bioacoustic and Ecoacoustic Data in Audiovisual Core

Good practice guidelines for long-term ecoacoustic monitoring in the UK

Google Scholar

Talks

03/03/2025 - Impacts of Urban Noise

22/01/2025 - TDWG Kingston Biodiversity Network

05/12/2024 - NHM x Natural England

08/11/2024 - Digital Dimensions of Nature Recovery

05/10/2024 - BNA Encaenia

All talks

Notes

Prophalangopsis obscura

Linux audio recipes

Acoustics figures

SANE defaults

All notes

Some thoughts on:

Acoustic figures

Acoustic figures and diagrams using R.

Wave in air

Represenatation of a pressure wave in air created using the R package figuRed

This is created by the wave_particle() function of FigurEd.

Wave sampling

Sampling a wave

Figure showing how a waveform is sampled digitally.

This is created by the waveSampled() function of FigurEd.

library(figuREd)
library(tuneR)
waveSampling(sine(freq=1), 2000)

A sampled wave

A sampled waveform.
library(figuREd)
library(tuneR)
par(mfrow=c(2,1))
waveSampled(sine(freq=1), 1000, 10)
waveSampled(sine(freq=1), 1000, 50)