Oregon 2020

It’s mid-September 2020, the tail end of the fire season and the end of the 6th month of the Covid19 (mis) adventure, at least from the western Canadian perspective.

Regardless what happens in the next month, the BC fire season is pretty much guaranteed to be a non-event from a statistical perspective. We are hovering around 610 fires, and about 13,500 hectares burned this year. Given that the averages sit at around 1800 fires and 50,000-200,000 ha burned, we are near the left tails of both of those distributions – one of the lowest years ever, in over 100 years of counting, from both the fire occurrence and area burned perspectives.

The same is not true for the western US. California is in the midst of another tragic year, with about a million hectares burned so far. Here’s a good article summarizing things, although it’s not breaking any new ground – we’ve known about the need for thinning and burning, and the effects of climate change, for at least a decade I’m sure. In the past two days, however, it’s Oregon that exploded with new fires and new huge fires.

East winds are brutal – they are the US PNW version of California’s ‘Santa Ana’ winds that cause such chaos down there. I was out in the field on the 8th when the high winds hit. On the southern tip of Vancouver Island, we could tell the strong and gusty winds from the east were bad news for the whole region.

I have very fond memories of my time playing and working hard in the Oregon Cascades, mostly 15-20 years ago. Tuesday’s (9/08) wind event was one of those ‘once in a century’ type explosive fire events that seem all too common in recent years. The news is now breaking that small towns in the Medford-Ashland corridor (Talent, Phoenix, Medford itself) had hundreds to thousands of homes burned in a single afternoon. What a tragedy for the area. I remember the area well and feel for the locals.

Here is a composite image I put together yesterday, with the MODIS and VIIRS hotspots in Google Earth overlaid with true colour MODIS/Terra imagery (from the NASA EOSDIS) showing the smoke plumes.

Canada (pretty much the whole country) got lucky this year. Hopefully we can help out our friends to the south. And let’s get on with the business of forest restoration and prescribed burning.

Wotton & Beverly (2007) moisture content adjustments

Edit June 15 – New simplified R code; see below.

This is something I’ve been working with recently as part of the CCP project, and I thought the code might be useful to others. I should get back into using Git and Github one of these days, but in the meantime, here’s some R code for those who want to play with this and are much too lazy to type out all the coefficients.

The Wotton & Beverly (2007) moisture content (WBmc hereafter) uses some forest stand composition, structure, and condition variables to modify the predicted moisture content estimated by the diurnal FFMC. The ‘generalized pine model’ has served us well for several decades (thank you, Charlie Van Wagner, James Wright, and others), but we’ve suspected for some time that stand factors play a role too. (If you don’t know what I’m talking about here, this probably isn’t for you). Ok, we’re talking about fire danger modelling using the Canadian Forest Fire Danger Rating System, and the FFMC is the Fine Fuel Moisture Code. Brush up on the FWI System basics if needed; here’s the technical report, and here’s  the  classic and much loved ‘mustache video’ (Intro to FWI System).

The WBmc estimates litter moisture, the most important fuel moisture variable for fire behaviour prediction. Their analysis was based on several thousand measurements from across Canada in the mid-20th century; as with the rest of the CFFDRS, it’s mostly focused on boreal forests, but not exclusively (there’s some BC data and some Great Lakes region data as well). Their model uses the following variables:

FFMC & DMC – by identifying DMC (Duff Moisture Code) as a significant variable , the authors found that drought or moisture in the duff layers (decomposing humus and fermentation layers in the forest floor) actually influences the moisture of the top litter layer. If it’s dry underneath, the litter is drier; if wet underneath, some of that moisture advects to the litter.

Forest stand type – pine, spruce, Douglas-fir (interior), mixedwood, or deciduous; admittedly, this list is limiting, and doesn’t get us entirely away from categorical fuel or vegetation types.

Stand densitylight, moderate, or dense stands; unfortunately, these categories aren’t very well defined either, as they were assigned from archived photos; as a working model, I’m using the tentative premise that this variable can be equated with the crown closure classification scheme (from the National Forest Inventory program): light ≈ Sparse (10-25% closure), moderate ≈ Open (26-60% closure), and dense ≈ Dense (61% or greater closure). I recently presented this to Mike Wotton, who said it made sense, but we’ll likely have to do some more field work to investigate this, and that may lead to a more usable continuous variable model for stand density.

Season – spring, summer, or autumn are significant on top of everything else; likely because of the greenup and leaf-out of broadleaf species in the overstory and understory, which add shade and in-stand moisture via evapotranspiration. The script currently uses spring (1), summer (2) and autumn/fall (3) as categories, but these changes don’t happen instantly, as it takes a few days for buds to flush, senescence to set in, etc. So I also added a ‘spring/summer transition’ (sprummer, if you will) option (season = 1.5) as the mean between those seasons. I suppose I should also add a ‘sumautumn’ season (2.5) at some point for the early fall period, but haven’t yet.

 

Wotton-Beverly2007_Fig5

(From Wotton & Beverly 2007; International Journal of Wildland Fire 16:463-472)

There are main effects and interaction effects associated with most of those variables, which alter the relationships at different variable levels. In most cases the interactions make sense, but not always. For instance, stand density is significant, with light and moderate density stands having lower mc than dense stands in most conditions. This makes good sense – sun and wind can penetrate lower density stands more easily and contribute to more rapid drying of the litter. But the effect diminishes under very dry conditions. This also makes sense, as several studies have found that overstory density can slow down in-stand drying, but under the droughtiest conditions, the stand effect disappears almost completely. See Whitehead et al. (2008) for a good example from BC.

So the problem here is that above FFMC 93 or so, the density effect actually reverses, where the dense stands start having lower moisture than the light or moderate density stands (above FFMC 96.5, the light density factor also reverses, where light stands start having higher moisture than moderate stands). These are almost certainly a factor of sample size, as there were few measurements in light and dense stands, particularly under the driest conditions. It’s also important to note that the highest FFMC in the range of data was 96.

So we’ll have to explore some better options for extreme-FFMC conditions, but for now, the best option is probably to stick with the ‘moderate’ stand density parameter for FFMC > 93.0.

In the meantime, here’s the R code and a spreadsheet version. The most annoying part of working with the code is typing out all of the coefficients. There are a couple of ways the authors present the models, including one with interaction factors and a simpler one with individual coefficients, though greater in number (in the Appendix, 45 different equations are listed with all combinations of the categorical factors). I’ve used the latter, even though it might have been quicker to do it the other way. Anyhow, at least I’ve done that for you (typing out coefficients), even though you may find your own code more slick than what I’ve come up with. Along the way we need FFMC and DMC moisture content functions, so those are in there too.

So here it is in a ‘copy/paste’ format. I’ll get it up on GitHub one of these days. Or just use the Excel version, WBmc-calcs.xlsx.

WBmc_calcs.xlsx

#Wotton-Beverly (2007) moisture content model, for adjusting the FFMC estimate 
#using stand, density, season, and DMC variables.
#Requires FFMC, DMC, stand (1:5; deciduous, Douglas-fir, mixedwood, pine, spruce), 
#density (1:3; light, mod, dense), season (1:3; spr, sum, fall)
#season==1.5 represents spring/summer transition (uses half of spring, half of summer estimate)
#D.Perrakis, June 2020; daniel.perrakis@canada.ca

#base R - no packages required

#create WB-mc function
#FFMC, DMC, stand, density, season

wbmc<-function(ffmc, dmc, stand, density, season) {
  #Get coefficients
  WBCoTr1 <-c(
       0.7299,0.0202,0.7977,0.8517,0.7391,
       0.4387,-0.271,0.5065,0.5605,0.4479,
       -0.2449,-0.9546,-0.1771,-0.1231,-0.2357,
       0.1348,-0.5749,0.2026,0.2566,0.144,
       -0.1564,-0.8661,-0.0886,-0.0346,-0.1472,
       -0.84,-1.5497,-0.7722,-0.7182,-0.8308,
       0.1601,-0.55,0.2279,0.2819,0.1693,
       -0.1311,-0.8408,-0.0633,-0.0093,-0.1219,
       -0.8147,-1.5244,-0.7469,-0.6929,-0.8055)
  WBCoTr2 <- c(
       0.5221,0.6264,0.5042,0.3709,0.4285,
       0.7133,0.8176,0.6954,0.5621,0.6197,
       1.0462,1.1505,1.0283,0.895,0.9526,
       0.8691,0.9734,0.8512,0.7179,0.7755,
       1.0603,1.1646,1.0424,0.9091,0.9667,
       1.3932,1.4975,1.3753,1.242,1.2996,
       0.9495,1.0538,0.9316,0.7983,0.8559,
       1.1407,1.245,1.1228,0.9895,1.0471,
       1.4736,1.5779,1.4557,1.3224,1.38)
  co3 <- 0.002232
  
  #Create data frame for pulling coefs
  WBCo <-data.frame("co1"=WBCoTr1, "co2"=WBCoTr2)
  
  #Spring and Summer coefs for 'sprummer' model
  co_sp <- WBCo[1:15,]
  co_su <- WBCo[16:30,]

  #define mcF, mcD, ex.mod intermediate functions
  mcF<-function(ffmc){
    147.2*(101-ffmc)/(59.5+ffmc)
  }
  mcD<-function(dmc) {
    20+exp(-(dmc-244.72)/43.43)
  }
  ex.mod<-function(s1, s2, s3, ffmc, dmc) {
    exp(s1+s2*log(mcF(ffmc))+s3*mcD(dmc))
  }

  if(season==1.5) {
    #spring
    c1.sprD=co_sp[(density*5-4):(density*5), 1]
    c2.sprD=co_sp[(density*5-4):(density*5), 2]
    c1=c1.sprD[stand]
    c2=c2.sprD[stand]
    mc.spr=ex.mod(c1, c2, co3, ffmc, dmc)   
    #summer 
    c1.sumD=co_su[(density*5-4):(density*5), 1]
    c2.sumD=co_su[(density*5-4):(density*5), 2]
    c3=c1.sumD[stand]
    c4=c2.sumD[stand]
    mc.sum=ex.mod(c3, c4, co3, ffmc, dmc)  
    
    #final 'sprummer' mc calc
    return(mean(c(mc.spr, mc.sum)))
    
  #for all others - spring, summer or fall
  } else {
    c1a=WBCo$co1[(season*15-14):(season*15)]
    c2a=WBCo$co2[(season*15-14):(season*15)]
    c1b=c1a[(density*5-4):(density*5)]
    c2b=c2a[(density*5-4):(density*5)]
    c1c=c1b[stand]
    c2c=c2b[stand]
    return(ex.mod(c1c, c2c, co3, ffmc, dmc))
  }
}
    
#[End]
#

#mcF, mcD functions on their own to get estimated #moisture contents from FFMC, DMC
mcF<-function(ffmc){
    147.2*(101-ffmc)/(59.5+ffmc)
  }
mcD<-function(dmc) {
    20+exp(-(dmc-244.72)/43.43)
  }
#[End]

#Works as far as I can tell
#e.g. FFMC 90, DMC 55, pine stand (4), moderate #density (2), summer (2); then compare with #sprummer and spring: 
#
#(Text below represents the R console, not code, #so don't copy it!
> wbmc(90, 55, 4, 2, 2)
[1] 10.50674
> wbmc(90, 55, 4, 2, 1.5)
[1] 9.420716
> wbmc(90, 55, 4, 2, 1)
[1] 8.334695
#Also, FFMC model alone, for comparison
> mcF(90)
[1] 10.83077

 

Finding fire articles and documents

So maybe you’re in university, working on your Master’s. In that case, you may have one of the world’s finest repositories of paper and digital records available to you, in the form of the university library. You have access to all the latest journals – IJWF, CJFR, FEM, Fire, Fire Ecology. But even then – you’re unlikely to know where to go for all of the government documents, or maybe you’re on the hunt for a key conference paper. These grey literature sources (ok, conference docs aren’t technically grey lit) often contain key information in fire science, and their value is sometimes only recognized years after the fact.

In this post, I’d like to highlight my own favorite search sources. I’d say that these days I probable can find 99% of what I’m looking for. Success rate drops off somewhat for really old documents (pre-1960 or so) but over time these are getting scanned as well.

1. Google Scholar. Need I say more? This baby pretty much singlehandedly revolutionized research disciplines when it came out, with its immense full-text access and ‘times cited’ links showing you where and how many times documents were referenced. I would say that its strength lies in access to recent publications (from 1-10 years old), as Google does a good job of automatically updating and referencing. Current ‘in press’ stuff is often missing, so for really current articles, you often have to go to the actual journal page and look for ‘current issue’ or whatever.

2. Treesearch. This isn’t necessarily my #2 go-to spot, but works well for US Forest Service sources, letting you search for all those General Technical Reports (GTRs), Research Papers (RPs), Proceedings documents (Ps) and so on, by number, research station and type. I’ve been witness to two institutional library shutdowns in my short career, and the printed versions of these old reports are bulky and seem to sometimes be of dubious value; I hope the US Forest Service and other agencies recognize the value of the older documents and continue to scan and archive the older reports because sometimes it seems like the pre-1980 stuff is still unlikely to be in digital form.

3. Along a similar vein, the CFS Publications site is the go-to page for classic Canadian fire sources from the CFS, including papers from CFS authors published in various other journals and formats (ie, it has much more than just CFS Information and Technical Reports). Find all those old J.G. Wright, H.W. Beall, C.E. Van Wagner and other working documents up here. I’ve found most of what I was looking for in terms of old Canadian fire arcana, but some authored materials are unfortunately still missing. I guess it’s impossible to keep track of everything.

4. Ok, for general fire papers that don’t meet the above criteria, or if you checked the government sites and came up empty-handed, the Fire Research Institute is an excellent and little-known repository. Thanks to Jason Greenlee for putting this together. The site claims to contain over 168,000 articles (as of time of writing), and appears to be a labour of love, but of excellent quality. When Jason is ready to retire, I hope this site gets taken over by an appropriate institution, as it has a lot of value.

5. ResearchGate. Social media meets academic research – it’s a novel concept, though I know it rubs some people a bit wrong. Also known as a good place to get articles that are copyrighted and aren’t open access! The ‘questions’ and ‘jobs’ links are pretty unique, and I think if you were a young person looking for an academic position and willing to travel abroad this would be an excellent way of finding out about obscure job postings. I believe the company itself is German, and it doesn’t seem to be updated quite as often as you would think, given how current social media tech is these days. I think they may have had some legal trouble with posting copyright materials. In any case, enjoy it for what it is – post your thesis, recommend a paper, leave a comment with your favorite researcher, check out that posting at the University of Uzbekistan.

6. FRAMES, the Fire Research and Management Exchange System, is kind of a neat one too. The main reason I go here is because it packages things by project. So if you want to see both the documentation and software associated with a computer model, FRAMES may have a page dedicated to it. It’s also very good for US research papers from 1990s-today that may not be open access.

7. Sci-hub. If all else fails, or if you’re an anarchist type, this is the pirate-guerilla warfare approach to research documents. ‘Bring knowledge to the people’, said its author, and a recent article suggests the site contains over 64 million papers. That’s a lot of science. It’s repeatedly threatened with legal action by the likes of Elsevier, and has been shut down several times (but has risen from the ashes each time). Its format, where you paste a link in the main search window, seems prone to failure but I’ve used it on occasion with some success.

Happy searching! I’ll try to update this periodically to keep it current.

EOSDIS Worldview – opportunistic tool for capturing fire runs

I’ve recently discovered the Earth Observing System Data and Information System (EOSDIS) Worldview app. Although it doesn’t bring any new data to the table, like Google Earth, having beautiful imagery available and easily accessed can be a game-changer.

Chukegg fire, Alberta, threatening High Level (26 May, 2019):

Chukegg2019

Lava Canyon fire, late run, BC Chilcotin 2009: LavaCanyon2009-8-27

And finally, I recently came across another NASA page that is very usable for active fire monitoring of hotspots, with worldwide coverage (nice for following the current Australian wildfires, for instance): FIRMS . I haven’t explored its capabilities yet, but it looks quite similar to the US GTAC Active Fire Mapping site, but in an easy web access format. Thanks, NASA!

ScreenHunter 186

 

CCP – Conifer Pyrometrics System

Ok, time for an update. Since I’ve started down this path, the FuelGraph project started as a fire and fuel type visualization tool. Then it became a way to compare models (FBP and CFIS), but some of the original authors of those models felt I was playing a bit fast and loose with fuel moisture concepts. Fair enough. (Just because the FFMC tries to estimate fine fuel moisture content doesn’t mean it actually does a good job, particularly across vastly different vegetation types.)

So a major change and increase in profile was in order. I had come up with a nifty way to link up a couple of models to get away from some FBP system constraints, but to make it actually credible requires quite a bit more analysis and documentation. That got me diving in headfirst to the original FBP System experimental burn documentation – the famed experiments at Sharpsand Creek and Porter Lake and Summit Lake (near Prince George).

At this point I feel like it’s starting to come together. At what ‘it’ is is now termed, rather pretentiously, the ‘Canadian Conifer Pyrometrics’ system. Well, it couldn’t be the Next Generation FBP System, because that name refers to another body of work (I do hope this CCP stuff eventually gets accepted enough to be integrated as an option within the NG-CFFDRS; the details definitely need to be worked out still). In a nutshell, it’s CFIS meets FBP with some tweaks and a simple surface model to tie things together, displayed and controlled (thus far) using FuelGraph.

Here’s the sneak preview, recently presented at the fabulous 6th Fuels & Fire Behaviour Conference (Marseille, France):

ResearchGate link

80652f39-7246-45e1-9832-7cc4e3e35226-e1561613750505.png

FuelGraph – not just FBPS anymore!

Update:

After working with this a whole bunch and some good discussions with Marty and Miguel, we came to the conclusion that it isn’t appropriate to equate FFMC-derived fine fuel moisture content (mc) with mc from Rothermel’s FBO tables. So I’ve deleted this version of FuelGraph. Combining a reanalyzed crown fire initiation model with a surface fire model and crown fire spread model (from CFIS), this is turning into a much larger project named Conifer Pyrometrics, gradually turning (I think) into a component of the Next Generation FBP System.

I haven’t deleted the post for posterity sake, but have deleted the FuelGraph version that included both. It turned out to be a bit intellectually dishonest, and I certainly wouldn’t want any fire behaviour forecasts or projections to be blown because of this.

****

I’ve made a major overhaul of the FBP Graph tool, and have added the new(er) Cruz, Alexander, and Wakimoto CFIS spread rate equations – crown fire occurrence (so-called passive and active) and ROS. Since the new stuff takes us beyond the realm of FBP, a name change was in order; thus, FuelGraph! See Graph 3 for the new stuff; only available with WS/FFMC (not ISI). This is a beta version, so if you find errors or weirdness, please let me know. The rest of the FBPS-fuel type-based functionality still exists in Graphs 1 and 2.

I envision this as a helpful tool for Canadian agency fire behaviour specialists or fuel management specialists who are playing with non-standard fuel types or planning fuel treatment scenarios. The CFIS equations include some options for showing crowning threshold confidence intervals as well as options for toggling between a couple of different input options.

For the final version (v.4.0) I may add a another feature or two, but at this point I’m pretty content with this thing. Let me know what you think. Anyone who wants to look under the hood can unhide the calculation sheets and unprotect the graphs – send a note if you’d like to do that and I could send the password.

FuelGraph 3.99

FNESS fuel trt - Titet-Treated_2016
Nice example of a thin-pine burn fuel treatment in a Ponderosa pine stand (photo courtesy of BC’s First Nations Emergency Services Society)

FBP Graph – now with fire type!

I finally got around to making some long-planned changes to FBP Graph, the MS Excel tool for comparing fire behaviour using the Canadian Fire Behaviour Prediction System.

The latest version has the subtle-but-significant change of showing (if the box is checked) fire type. That is, when checked, the graph lines now indicate three thresholds, in terms of ISI or wind speed: these are the crown fire initiation threshold (between surface fire and intermittent crown fire, or 10% Crown Fraction Burned, or CFB), the point at which CFB is 50%, and the threshold between intermittent and continuous crown fire (90% CFB). As with the rest of the FBP Graph tool, the point thresholds move around on the graph depending on fuel type, buildup index (BUI), and some other modifiers depending on fuel type.

ScreenHunter_08 Feb. 20 15.53

These thresholds are important for two reasons. As fuel consumption and spread rate increase, conifer crowns become involved in fire spread (according to the Van Wagner crown fire model), further increasing fire intensity. However, the only fuel type in the FBP System that demonstrates a change in spread rate as crown involvement increases is the C-6 type, which is in many ways the most sophisticated fuel type in the system. So it is important to note where along the lines changes in fire type occur, as these can show where one can expect sudden changes in fire behaviour.

A second reason for the importance of these thresholds is that predicted rate of spread may well be incorrect as fire type changes. As many authors have noted, at the onset of crown fire initiation, spread rate can increase more than threefold, as the flaming front is suddenly exposed to above-canopy ambient winds. This change is not reflected in sigmoidal ROS curves that most FBP fuel types have, so fire type thresholds can indicate where these curves oversimplify, and likely underpredict, spread rate. As always, using the FBP Graph tool for operational purposes assumes expert knowledge and training in fire behaviour prediction using the CFFDRS, and I make no guarantees about the accuracy of the outputs (but you know, if you think there are errors, please let me know so I can address them). The ISI or wind speed threshold is calculated to the nearest 1 unit (ISI or km/h); so fire behaviour calculators such as RedApp are more accurate, but this is still pretty accurate given the inaccuracy of the base measurements (precipitation, wind speed, etc.). Thanks for your interest.

FBPGraph_v3_0

 

Coastal forests catch fire

Fires are burning in coastal BC. This in itself is not a big deal, but the thick smoke in the air and local airtime devoted to the topic affirm its novelty. At least two fires in the (typically) wet Coastal Western Hemlock biogeoclimatic zone went from a few hundred hectares to several thousand in one afternoon and evening this past weekend; both fires were near the Whistler-Pemberton area, west and north of the Pemberton icecap glacier. Although the fires and their impact are not yet understood, the fire extents suggests that we may be experiencing a once-in-a century (or more) type of weather (and fire) event, the type of burning that defines a a 100 year (or 200, or 500 year) fire cycle. On the other hand, with our changing climate, this may become a more regular occurrence: our grand coastal temperate rainforests may now (or soon) be under the influence of something closer to a 50 year, or less, fire cycle.

But I really wanted to write about fuel typing and fire behaviour. Fire behaviour modelers have struggled with what to do with west coast forests for years. They don’t burn easily, but when they do, it’s a big event. Mind you, it’s not the spread rate that is notable but rather the smoke emissions, and sometimes the fire intensity – there’s just a lot of biomass there, and when it dries out and burns, it’s a lot of combustion. When modeling fire behaviour in these stands, I tend to use the C-5 FBP fuel type model (developed in red and white pine stands in Ontario); although C-5 is kind of a weak-kneed fuel type (suggesting relatively slow-spreading, low intensity fires), the model nonetheless tends to overpredict fire behaviour in coastal forests most of the time. It’s just kind of hard to get fires going underneath the thick canopy that holds moisture so well. The fire behaviour of the past weekend hasn’t changed my mind on this – I think the C-5 rate of spread model may still be reasonable (or overpredict somewhat in most cases). Rather, the fuel consumption estimates from the model (and consequently fire intensity) may be underpredicted. Let’s call it a hunch. I wonder if I can get any data on this.

Boulder creek fire 2015_July2 growth

Tools for fire modeling: FBP Graph

Some time ago, Marty Alexander, Canadian fire behaviour guru emeritus, challenged me to put together a tool for comparing  the fuel types within the Canadian Fire Behaviour Prediction System (a sub-component of the Canadian Forest Fire Danger Rating System). I had already been interested in comparing the fuel types graphically to aid in fuel typing (deciding which FBP fuel types would best fit various patches of land based on characteristics such as tree species and density). This proved to be a very hand way to learn the details of the calculations within the FBP system.

The result is FBP Graph, an Excel graphing tool that compares spread rate and headfire intensity between up to 4 FBP fuel types simultaneously, with a fair amount of user control over the inputs and appearance. Although some day I may try to convert this to R or some more sophisticated platform, the Excel graphing format was handy for this purpose and should be familiar to most users.

The current version is 2.1, which allows for the x axis to be toggled between ISI (initial spread index) and wind speed, which is handy for forecasting the likely results of wind gusts and diurnal wind changes. Overall, I believe FBP Graph should be fairly self-explanatory to anyone with a good understanding of the FBP system (say, anyone who has been through the CIFFC Advanced Fire Behaviour course). Comments and suggestions are welcome.

Screen shots and download:

ScreenHunter_04 Dec. 17 11.23

FBPGraph_v2_1

Fire photos and videos

Who isn’t fascinated by wildland fire? I am privileged to be able to study such a cool phenomenon.

Here is a tasting of some great fire images from the great Canadian wild.

Just a random little fire, started by lightning somewhere in Wood Buffalo National Park (southern Northwest Territories), June 2006; landscape is typical of the boreal muskeg - poorly drained soil, lots of water, lots of organic material, small trees.
Just a random little fire, started by lightning somewhere in Wood Buffalo National Park (southern Northwest Territories), June 2006; landscape is typical of the boreal muskeg – poorly drained soil, lots of water, lots of organic material, small trees.
This is from a walk through a 2005 fire one year later - tens of thousands of jack pine seedlings per hectare, naturally regenerated following wildfire (pine cone is about 5-7 cm or 2-3 inches long).
This is from a walk through a 2005 fire one year later – tens of thousands of jack pine seedlings per hectare, naturally regenerated following wildfire (pine cone is about 5-7 cm or 2-3 inches long).

 

On the ecotone (ecosystem transition area) between the southern boreal plains and prairie grasslands of Saskatchewan; this is a 2009 prescribed burn in Prince Albert National Park designed to restore a grassland ecosystem. The fire is burning through a decadent stand of trembling aspen, burning as a relatively high intensity surface fire.
On the ecotone (ecosystem transition area) between the southern boreal plains and prairie grasslands of Saskatchewan; this is a 2009 prescribed burn in Prince Albert National Park designed to restore a grassland ecosystem. The fire is burning through a decadent stand of trembling aspen, burning as a relatively high intensity surface fire.

 

OLYMPUS DIGITAL CAMERA

This is a more typical fire photo for the boreal forest – high intensity active (continuous) crown fire burning through black and white spruce. This is probably the type of fire that created this stand in the first place. Wood Buffalo National Park, 2007.

 

 

Intelligence for wildfire researchers and managers