Glossy Buckthorn / Pugwash River Estuary
Glossy buckthorn (Photo by NCC Staff)
Glossy buckthorn is an invasive non-native plant found in the Pugwash River Estuary in Nova Scotia. This podcast looks at why the Pugwash River Estuary is considered an important natural area, and how removing Glossy buckthorn conserves biological diversity.
Samantha Ceci, property steward, interviews Doug van Hemessen, Nova Scotia stewardship manager at the Nature Conservancy of Canada.
Part 1
var maudio = document.getElementById('myaudio1');
var soundSprite = [
{start: 0, end: 3000},
{start: 3500, end: 6789}
];
element.addEventListener('touchstart', function(ev) {
maudio.play();
playSoundFile(0);
})
function playSoundFile(idx) {
maudio.currentPosition = soundSprite[idx].start;
var x = setInterval(function() {
if(maudio.currentPosition >= soundSprite[idx].end) {
maudio.pause(); // There is no stop() in HTML5
clearInterval(x);
}
}, 50);
}
Part 2
var maudio = document.getElementById('myaudio1');
var soundSprite = [
{start: 0, end: 3000},
{start: 3500, end: 6789}
];
element.addEventListener('touchstart', function(ev) {
maudio.play();
playSoundFile(0);
})
function playSoundFile(idx) {
maudio.currentPosition = soundSprite[idx].start;
var x = setInterval(function() {
if(maudio.currentPosition >= soundSprite[idx].end) {
maudio.pause(); // There is no stop() in HTML5
clearInterval(x);
}
}, 50);
}