Chapter 12 An Implementation of the Pathway Analysis Through Habitat (PATH) Algorithm Using NetLogo

Size: px
Start display at page:

Download "Chapter 12 An Implementation of the Pathway Analysis Through Habitat (PATH) Algorithm Using NetLogo"

Transcription

1 Chapter 12 An Implementation of the Pathway Analysis Through Habitat (PATH) Algorithm Using NetLogo William W. Hargrove and James D. Westervelt 12.1 Background When developing plans to protect populations of species at risk, we tend to focus on protecting and preserving habitat where the species naturally occurs. Ecologists employ historic sightings of individuals, habitat suitability index (HSI) models, and the expert advice of local naturalists familiar with the environments desired and required. In many cases, the optimal habitats are fragmented to the extent that a species at risk could be extirpated from any single area by storms, drought, disease, or other local insult. Alternately, over time, a small population could become so inbred that it becomes susceptible to disturbances that increase the probability of local extirpation. However, if nearby populations can reach the isolated population across the fragmented space, then the isolated population becomes part of a larger metapopulation. The strength of habitat connections, therefore, can be critical to ensure the viability of at-risk populations over time. Habitat connectivity plays this important role by increasing the effective population size, maintaining gene flow, and facilitating regular migration, dispersal, and recolonization. Each of these processes helps ensure the long-term persistence of a population. A connected landscape is preferable to a fragmented one (Beier and Noss 1998 ; Bennett 1999 ). Natural landscapes are generally more connected than landscapes altered or manipulated by humans, so establishing or maintaining corridors is a viable strategy to sustain the natural connectivity (Noss 1987 ). W.W. Hargrove (*) USDA Forest Service Southern Research Station, Eastern Environmental Threat Assessment Center, 200 W.T. Weaver Blvd., Asheville, NC , USA whargrove@fs.fed.us; hnw@geobabble.org J.D. Westervelt Construction Engineering Research Laboratory, US Army Engineer Research and Development Center, Champaign, IL, USA james.d.westervelt@usace.army.mil J.D. Westervelt and G.L. Cohen (eds.), Ecologist-Developed Spatially Explicit Dynamic Landscape Models, Modeling Dynamic Systems, DOI / _12, Springer Science+Business Media, LLC

2 212 W.W. Hargrove and J.D. Westervelt Metapopulation is the term for a collection of discrete local breeding populations that occupy distinct habitat patches but are connected by migration (Hanski and Gilpin 1997 ). Population viability analysis (PVA), a method for forecasting the probability that a metapopulation will persist over time, has been automated by numeric modeling applications such as RAMAS (Applied Biomathematics 2003 ). A key input to a PVA is the probability of migration among all individual populations of the metapopulation. Understanding the viability of an at-risk population or metapopulation depends to a significant extent on identifying the migration routes that connect the discrete constituent populations. Also, without this understanding, land managers may not have enough information to protect important migration paths. That deficiency, in turn, may lead to the loss of more-isolated populations, an increased threat to the survival of the greater metapopulation. In order to help improve our understanding of species migration routes among separated populations, Hargrove, Hoffman, and Efroymson ( 2005 ) developed the Pathway Analysis Through Habitat (PATH) computer simulation model. Originally developed for implementation on a supercomputer, the purpose of PATH is to help a decision-maker to reliably predict where potential dispersal corridors are likely to exist in real-world landscape maps. This information makes it possible to project which habitats will support population growth (sources) and which will tend to lose population (sinks). The PATH algorithm works by launching walkers (i.e., virtual animals) from each habitat patch to simulate the journey of individuals through land cover types in the intervening matrix until arriving at a different habitat patch or dying. Each walker is given a set of user-specified habitat preferences that direct its walking behavior to resemble the animal of interest. As originally implemented, PATH was designed for a massively parallel computing environment in order to analyze the activity of very large numbers of random walkers in large landscapes with many habitat patches. PATH produces three outputs: (1) a map of the most heavily traveled potential migration pathways between patches, (2) a square transfer matrix that quantifies the flow of animals successfully dispersing from each patch to every other patch, and (3) a set of importance values that quantifies, for every habitat patch in the map, the contribution of that patch to successful animal movement across the landscape. The transfer matrix is square and not triangular since the rate of animal movement is likely to be asymmetrical between any two habitat patches. That is, the rate of successful migration from patch 1 to patch 2 will likely not equal the successful migration from 2 to 1. One problem with the original implementation of PATH is the inherent barrier to its use: the application is designed to perform massive simulations that require a supercomputer to run them in a reasonable amount of time. This project was conceived as a way to make migration pathway analysis more accessible to users of desktop computers by implementing the core PATH algorithm in the NetLogo simulation modeling environment (Wilensky 1999 ).

3 12 An Implementation of the Pathway Analysis Through Habitat Objective The objective of this modeling project was to develop a computationally efficient PATH-based tool for desktop computers that can identify important species migration corridors between habitats based on expert information about inter-habitat patch lethality, the energy cost to cross, and the energy available to animals to move outside of core habitat Model Description Purpose This implementation of PATH is intended to illuminate the essential mechanisms that help to identify animal migration corridors. 1 A premise of the design was to avoid including any data or processes not directly illuminating the successful migration of species between two or more separated habitat patches. This model converts expert knowledge about habitat patch locations, traversal cost, and probability of mortality through the interstitial landscape into information about the relative connectivity of all pairs of habitat patches and the impact of interstitial lands on successful migrations. In future versions, certain additional aspects of realism, such as seasonal effects and time steps, could be added in instances where model results might be improved. As you read further you will note that, unlike the other models in this book, this model does not use time steps State Variables and Scales The scale and extent of the area are determined by the user, with the practical limit depending on the processing power of the user s computer. The demonstration data set used in this model supports a simulation space encompassing more than 1,000 by 1,000 cells (i.e., one million cells). The primary state variable that changes over simulation time is the number of successful migrations supported by each patch in the simulation space. 1 An operational copy of this model is available through

4 214 W.W. Hargrove and J.D. Westervelt Process Overview and Scheduling The model is initialized by reading data from a set of three location-specific maps that characterize (1) the location of habitat patches, (2) the energy cost to cross the space between patches, and (3) the lethality associated with migrating through non-habitat. During initialization, first the habitat map loads, then the model aggregates, outlines, and numbers all contiguous habitat patches (i.e., habitats ). A user s chosen number of travelers is initialized. The simulation runs in discrete steps, but these steps do not represent time because time has no bearing on an individual s energy level, the energy cost of migrating, or patch lethality. At each step in the simulation, walkers are randomly distributed along the edges of a habitat based on area size. Walkers are faced away from the habitat interior and started on a walk that is partially directed with an adjustable level of randomness. The amount of energy consumed during one step is based on the data provided by the energy cost input map, and travelers randomly die according to the patch-specific probability of mortality read from the patch lethality input map. As a traveler moves through the interstitial space between habitats, it remembers its course. If the traveler succeeds in arriving alive at a habitat patch different from where it started, it communicates to every patch along the successful path that the patch supported a successful crossing. Each patch then updates a habitat-to-habitat crossing array that tracks the number of successful crossings among all patch combinations Design Concepts Emergence PATH reveals the value of every patch in supporting habitat-to-habitat migration through the emergent behavior of the walkers, as an increasing number of them successfully complete migrations and the most favorable paths become more evident Stochasticity Walkers begin their attempted migrations by facing away, randomly, from the interior of their beginning habitats, and then proceed to move through the space separating habitat patches. The travel direction of walkers may be set to be fully random, partially random, or fully deterministic depending on the value selected for a userset variable. The movement of a walker at each simulation step may be characterized as a wiggle, turning to the left between 0 and X angular degrees (where X is a userselected value); then turning to the right between 0 and X degrees. If the user sets X to 0, then the travel path is straight; if the angle is set to 360, then every step is fully random. The user will assign a value to X based on what is known of the subject species tendency to maintain a direction; movement tendencies vary among species.

5 12 An Implementation of the Pathway Analysis Through Habitat Observation In this version of the model, walkers observe nothing about their surroundings because that information is largely extraneous to path selection on a collective level. However, this model could be modified for experimentation purposes to support species-specific observation and evaluation of travel-direction options by individual walkers Time This model deals with time in a manner very different from any other model in this book, which all include an idea of time passing as the model executes. In this PATH model, each step involves releasing a new batch of walkers, which expend energy and risk death as they move. One may imagine that time passes as they move, but their time is not associated with any other walker s time in any model step. Regardless of the number of ticks, the total set of walkers active during the simulation can be assumed to begin their walking at the same time. Also, the state of the landscape never changes as it often does in other models, which leaves the landscape essentially timeless Initialization Patches are initialized with data read from the habitat-location, energy-cost, and patch-lethality maps. Habitat quality is represented by a binary variable, either 0 for non-habitat or 1 for habitat. The walkers energy store is set by the user before migration attempts begin, and the amount of energy lost to walkers as they cross patches is accounted for by data from the model s energy-cost map. Finally, the probability of mortality while crossing a patch is represented by a value ranging from 0 to 100 as determined by the model s lethality map. Also during initialization, as briefly noted above, patches are clumped together to form contiguous habitats, and each habitat is given a unique identification number Input Input is provided by the three raster maps described above. The habitat-location, energy-cost, and patch-lethality maps are prepared within a raster-based geographic information system (GIS) and provided to the model as Esri ASCII grid files. PATH requires maps that are location- and species-specific. The habitat map could be produced using the results of a Habitat Suitability Index study. It also might be based on a regression analysis that correlates known habitat and non-habitat patches

6 216 W.W. Hargrove and J.D. Westervelt with factors in other GIS maps such as slope, land cover, soil type, land use, canopy cover, and elevation. In any case, the end product must be a map of habitat for the target species places where the species can establish a home range and survive. The lethality map represents the probability (0 100%) that an individual will die while crossing any patch. A patch lethality value is based on exposure to predators, the probability of being caught in an inescapable situation, and the species ability to deal with the land cover. GIS data involved in developing this information might include land cover, land use, slope, and aspect. The energy-cost map is similar to the lethality map, but instead of encountering immediate death in specific patches, the walker loses energy based on the energy-cost value for the patch being crossed. For example, crossing through dense woods, a swamp, or a pond may require more energy than crossing an open short-grass field. Energy cost, of course, varies with the species. Like the lethality map, the energy-cost map will likely be based on an ecologist s analysis of land cover, slope, and aspect data Submodels Our NetLogo implementation of PATH sets aside all ecosystem and species functions that are not essential to the modeling of animal migration path formation. It is a very simple model that operates on data provided by three raster maps as initialized with species-specific values set by the user for a small number of variables. The concept of time is not essential to understanding the establishment of migration paths, so each NetLogo tick (i.e., step) occurs independently of time, and represents only one discrete action that involves walkers attempting to migrate from a home habitat to another habitat. At each NetLogo tick, a user-chosen number of travelers make a crossing attempt. That number is not critical, but the number of total attempts is. The number of travelers leaving each habitat is proportional to the size of the habitat, based on the assumption that larger habitats have larger populations and therefore will send forth more emigrants. Walkers depart home habitats from a random edge location. As the simulation proceeds, successful migration paths are traced onto the output map in black, and each path becomes denser as more individuals use the same path. These paths accrete into increasingly stable shaded areas that reveal the corridors between habitats that are most successfully used in migration. The darkest traces within these grayscale areas indicate the most successfully used corridors Simulation Experiments We used this PATH application to identify the corridors within Fort Benning, GA, that might be used by gopher tortoises ( Gopherus polyphemus ) migrating among tortoise habitat fragments. This animal, an at-risk species that has been nominated

7 12 An Implementation of the Pathway Analysis Through Habitat 217 Fig The study area after being initialized for Federal Threatened status, is carefully managed on Fort Benning. The three GIS maps required for the model were derived from National Land Cover Data (NLCD) maps. Areas with land cover suitable for tortoises were selected, and contiguous areas greater than 18 ha were identified as habitat. Each of the NLCD land cover types was then associated with a transit-energy cost and a probability of mortality (0 100%), and these parameters were then used as the basis for reclassifying the NLCD map into the other two input maps. Model initialization, which involves reading the three maps as well as identifying and labeling contiguous habitat patches into habitats, takes several minutes and produces the image in Fig The 108 identified habitats are shown in medium gray, with edges outlined in darker gray and uniquely labeled. For this experiment, each walker was given 4,000 units of energy before its crossing attempt and was assigned a maximum turn angle of 20 after each step. Five hundred walkers were arbitrarily initialized at the same time, started at a habitat edge and randomly faced away from the habitat. The total leaving any habitat was based on that habitat s relative size. Each walker moved ahead until it ran out of energy or successfully reached

8 218 W.W. Hargrove and J.D. Westervelt Fig Successful migration density after three million attempts a new habitat. Once these walkers were finished, a new set of 500 was initialized and the process continued over and over. In 1 min of wall-clock time, the model generated 1.25 million walker attempts, with about 10% successfully migrating from 1 of the 108 habitat patches to another. After three million habitat-crossing attempts were simulated, the patches were assigned a color along a log-adjusted gray scale based on the relative number of successful crossings in which they were used (Fig ). The specks in the image identify locations at which travelers ran out of energy in their final attempt. The maximum number of successful crossings supported by any one patch was 2,932 and is represented in black. Numerous patches participated in crossing. When the simulation is viewed on a computer screen, these patches are visible as white sinuous lines against the darker background. Just 357,328 of the 3 million crossing attempts were successful. This value was derived from the inter-habitat migration success table, which can be displayed by selecting NetLogo s Interface tab. For this simulation, four strong metapopulations emerged, with three of them being tenuously linked (inspect Fig ). With lower initial energy levels, the number of successful migrations decreased, the number of

9 12 An Implementation of the Pathway Analysis Through Habitat 219 Fig Net in- and out-migration among habitats 1 through 34 separated metapopulations increased, and the number of habitats unconnected to other habitats increased. In terms of species conservation and survival, higher numbers of metapopulations and disconnected habitats are less desirable; and higher numbers of individuals and larger metapopulations are more desirable. One output of this application is a table that shows the number of successful migrations between all pairs of habitats. By subtracting out-migrations from in-migrations, the user can discover which habitats in each pair are net population sources or sinks. Figure 12.3 shows the net migration from every habitat to every other habitat for habitats 1 34 (out of 108 total). Note that habitat 2 is a net source to habitats 1, 3, 15, 18, and 21 while habitat 16 is a net sink for 7 other habitats Discussion This PATH application reveals that high-quality interstitial habitat is more likely to be associated with corridors than less-preferred habitat, and that short connectors develop more often than longer ones. The model assumes that movement through non-habitat areas is semi-random, with the walker s current heading having some

10 220 W.W. Hargrove and J.D. Westervelt persistence. Actual animals may functionally select resources at a finer scale than is used in this model, and thus may not follow the same route as one optimized by PATH at a coarser resolution. However, animals also may respond to coarser-grained landscape cues than are represented by this model s habitat map, especially when migrating or dispersing across long distances. Animal movement choices and behaviors may vary with age, gender, pregnancy and nutrition status, and the nature and composition of traveling groups. The importance of those factors may differ between species. The implementation of PATH described here attempts to illuminate patterns of successful inter-habitat migration with a computationally low-overhead modeling approach. It encapsulates essential migration activities and costs into bare fundamentals a binary habitat indicator, a movement parameter, a randomness parameter, an energy-accounting function, and a mortality probability. The model also includes output basic functions to track and display successful crossings. The map interface shows only the metapopulations and the strength of population connections within them. This information can be concisely output to reveal whether given populations are likely sources and sinks (Fig ). Although this PATH-based model is very simple, it is important to note that it is technically sufficient to capture the essential elements of real-world migration pathformation for a variety of species. While simpler analytical approaches are possible, such as a least-cost method for predicting path formation, they do not account for multiple terrain types that differ in terms of crossing-energy costs or lethality probability, and are too simplistic to capture all essential considerations. More importantly, because least-cost path modeling methods show the solution to be a single pathway, they illustrate only the current optimal route but do not show secondary routes that could be improved over the current best route through small modifications to the habitat map. The PATH tool shows all feasible connectivity routes, not just the single current best one. Paths that have good potential, but are currently used as secondary routes by the metapopulation, are exactly the ones that resource managers need to know about in order to consider where strategic management alterations can dramatically improve habitat connectivity. Such routes are evident in a PATH output corridor map as strong potential corridors, which may be impeded only in one or two locations by passing through low-quality patches. The walkers in a simulation, considered individually, have almost no sophistication at finding migration paths as compared with individual real-world animals. However, considered collectively, the behavior of all successful walkers represents a spatial optimization process that can be used to reproduce the optimum pathways we would expect well-adapted individuals of the subject species to use most often. For this reason, it is not a problem that the walkers, endowed only with the ability to see land types immediately adjacent to their current location, represent animals that may have much greater sensory scope and range. The simplified walker mode of functioning in the model does not constrain the optimization of the potential corridors found by PATH. The optimization in this model results from the collective action of the large number of successful dispersers and the weighting of the most efficient potential dispersal paths the most heavily. Even if individual walkers in the

11 12 An Implementation of the Pathway Analysis Through Habitat 221 model had a greater look-ahead capability, the same optimal potential corridors would be predicted by the PATH tool. Consider, for example, a situation in which the local environment is inhospitable, but just beyond this there is a high-quality habitat pathway to another patch. Although short-sighted, a few walkers will make rare, immediately suboptimal choices and cut through the inhospitable bottleneck to discover the optimized pathway beyond. Becoming successful dispersers, their tracks will become part of the final map, showing the connection just as surely as if they had been able to look beyond the local problem with terrain. A converse situation is also true: pockets of higher-quality habitat that are surrounded by barriers of poor-quality habitat will attract many individual walkers, but it is not likely that those walkers will successfully reach a second patch. Since only the travel paths of successful dispersers are used, no potential corridors will pass through this attractive dead-end area, just as if walkers had been able to see the barriers to migration that lie beyond. For purposes of real-world application to habitat-management decisions, corridors identified using randomized walkers in this PATH tool must be verified against actual movement corridors that have been observed in the field. Radio tracking and telemetry studies would be appropriate for empirically testing walker-generated corridors against migration paths established by the subject species in the natural environment Conclusions The original PATH model, designed to handle very large numbers of walkers on very large landscapes, was implemented on a supercomputer. Few working resource managers actually have access to a supercomputer. This implementation of the PATH algorithm as a simplified NetLogo model makes PATH available to a much wider user community because it works well on a standard desktop computer. This PATH-driven model identifies and highlights areas in a landscape that contribute to the natural connections among populations, identifies the metapopulation structure, and indicates the relative strength of connections holding a metapopulation together. This information is essential to making effective habitat-management decisions that support robust populations of species at risk. References Applied Biomathematics (2003) Ramas software. Copyright Setauket. ramas.com/. Accessed 2/26/2010 Beier P, Noss RF (1998) Do habitat corridors provide connectivity? Conserv Biol 12(6): Bennett AF (1999) Linkages in the Landscape: The Role of Corridors and Connectivity in Wildlife Conservation. International Union for Conservation of Nature and Natural Resources (IUCN) Forest Conservation Programme. Conserv Forest Ecosystems, ISBN , , 24(1):244

12 222 W.W. Hargrove and J.D. Westervelt Hanski IA, Gilpin ME (eds) (1997) Metapopulation biology. Academic, San Diego Hargrove WW, Hoffman FM, and Efroymson RA (2005) A practical map-analysis tool for detecting potential dispersal corridors. Landsc Ecol 20(4): Noss RF (1987) Corridors in real landscapes: a reply to Simberloff and Cox. Conserv Biol 1(2): Wilensky U (1999) NetLogo. Computer software. Center for Connected Learning and Computer- Based Modeling, Northwestern University, Evanston. Accessed 2/26/2010

Priority areas for grizzly bear conservation in western North America: an analysis of habitat and population viability INTRODUCTION METHODS

Priority areas for grizzly bear conservation in western North America: an analysis of habitat and population viability INTRODUCTION METHODS Priority areas for grizzly bear conservation in western North America: an analysis of habitat and population viability. Carroll, C. 2005. Klamath Center for Conservation Research, Orleans, CA. Revised

More information

Chapter 5 Lecture. Metapopulation Ecology. Spring 2013

Chapter 5 Lecture. Metapopulation Ecology. Spring 2013 Chapter 5 Lecture Metapopulation Ecology Spring 2013 5.1 Fundamentals of Metapopulation Ecology Populations have a spatial component and their persistence is based upon: Gene flow ~ immigrations and emigrations

More information

Logistic Regression for Distribution Modeling

Logistic Regression for Distribution Modeling Logistic Regression for Distribution Modeling GIS5306 GIS Applications in Environmental Systems Presented by: Andrea Palmiotto John Perry Theory Familiar Territory Linear Regression Relevant Assumptions

More information

Putative Canada Lynx (Lynx canadensis) Movements across I-70 in Colorado

Putative Canada Lynx (Lynx canadensis) Movements across I-70 in Colorado Putative Canada Lynx (Lynx canadensis) Movements across I-70 in Colorado INTRODUCTION March 8, 2012 Jake Ivan, Mammals Researcher Colorado Parks and Wildlife 317 W. Prospect Fort Collins, CO 80526 970-472-4310

More information

LAB EXERCISE #4 Modeling Connectivity

LAB EXERCISE #4 Modeling Connectivity LAB EXERCISE #4 Modeling Connectivity Instructor: K. McGarigal Overview: In this exercise, you will learn to appreciate the challenges of modeling connectivity and gain practical hands-on experience doing

More information

On the Feasibility of Quantitative Population Viability Analysis in Recovery Planning: Efforts to Bridge the Gap Between Theory and Practice

On the Feasibility of Quantitative Population Viability Analysis in Recovery Planning: Efforts to Bridge the Gap Between Theory and Practice On the Feasibility of Quantitative Population Viability Analysis in Recovery Planning: Efforts to Bridge the Gap Between Theory and Practice LUTZ TISCHENDORF 1 AND KATHRYN LINDSAY 2 1 ELUTIS Modeling and

More information

LAND CHANGE MODELER SOFTWARE FOR ARCGIS

LAND CHANGE MODELER SOFTWARE FOR ARCGIS LAND CHANGE MODELER SOFTWARE FOR ARCGIS The Land Change Modeler is revolutionary land cover change analysis and prediction software which also incorporates tools that allow you to analyze, measure and

More information

Optimal Translocation Strategies for Threatened Species

Optimal Translocation Strategies for Threatened Species Optimal Translocation Strategies for Threatened Species Rout, T. M., C. E. Hauser and H. P. Possingham The Ecology Centre, University of Queensland, E-Mail: s428598@student.uq.edu.au Keywords: threatened

More information

Strategies for biodiversity conservation

Strategies for biodiversity conservation Institute of Earth Systems University of Malta Strategies for biodiversity conservation Louis F. Cassar PhD Elisabeth Conrad PhD The conservation imperative: perspective Biodiversity hotspot High endemism

More information

Spatial Graph Theory for Cross-scale Connectivity Analysis

Spatial Graph Theory for Cross-scale Connectivity Analysis Spatial Graph Theory for Cross-scale Connectivity Analysis Andrew Fall School of Resource and Environmental Management, SFU and Gowlland Technologies Ltd., Victoria, BC Acknowledgements Marie-Josée Fortin,

More information

Evaluating Corridors. Jeff Jenness Dan Majka Paul Beier. CorridorDesigner Workshop Fall 2007

Evaluating Corridors. Jeff Jenness Dan Majka Paul Beier. CorridorDesigner Workshop Fall 2007 Evaluating Corridors Jeff Jenness Dan Majka Paul Beier CorridorDesigner Workshop Fall 2007 1 1 Evaluating Corridors Test Alternative Corridors Least cost methods always provide a best solution, even when

More information

Outline. 15. Descriptive Summary, Design, and Inference. Descriptive summaries. Data mining. The centroid

Outline. 15. Descriptive Summary, Design, and Inference. Descriptive summaries. Data mining. The centroid Outline 15. Descriptive Summary, Design, and Inference Geographic Information Systems and Science SECOND EDITION Paul A. Longley, Michael F. Goodchild, David J. Maguire, David W. Rhind 2005 John Wiley

More information

Summary Description Municipality of Anchorage. Anchorage Coastal Resource Atlas Project

Summary Description Municipality of Anchorage. Anchorage Coastal Resource Atlas Project Summary Description Municipality of Anchorage Anchorage Coastal Resource Atlas Project By: Thede Tobish, MOA Planner; and Charlie Barnwell, MOA GIS Manager Introduction Local governments often struggle

More information

BIOS 230 Landscape Ecology. Lecture #32

BIOS 230 Landscape Ecology. Lecture #32 BIOS 230 Landscape Ecology Lecture #32 What is a Landscape? One definition: A large area, based on intuitive human scales and traditional geographical studies 10s of hectares to 100s of kilometers 2 (1

More information

Vegetation and Wildlife Habitat Mapping Study in the Upper and Middle Susitna Basin Study Plan Section 11.5

Vegetation and Wildlife Habitat Mapping Study in the Upper and Middle Susitna Basin Study Plan Section 11.5 (FERC No. 14241) Vegetation and Wildlife Habitat Mapping Study in the Upper and Middle Susitna Basin Study Plan Section 11.5 Initial Study Report Part C: Executive Summary and Section 7 Prepared for Prepared

More information

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows)

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows) LECTURE 1 - INTRODUCTION TO GIS Section I - GIS versus GPS What is a geographic information system (GIS)? GIS can be defined as a computerized application that combines an interactive map with a database

More information

IUCN Red List Process. Cormack Gates Keith Aune

IUCN Red List Process. Cormack Gates Keith Aune IUCN Red List Process Cormack Gates Keith Aune The IUCN Red List Categories and Criteria have several specific aims to provide a system that can be applied consistently by different people; to improve

More information

Chapter 8. Biogeographic Processes. Upon completion of this chapter the student will be able to:

Chapter 8. Biogeographic Processes. Upon completion of this chapter the student will be able to: Chapter 8 Biogeographic Processes Chapter Objectives Upon completion of this chapter the student will be able to: 1. Define the terms ecosystem, habitat, ecological niche, and community. 2. Outline how

More information

14.1. KEY CONCEPT Every organism has a habitat and a niche. 38 Reinforcement Unit 5 Resource Book

14.1. KEY CONCEPT Every organism has a habitat and a niche. 38 Reinforcement Unit 5 Resource Book 14.1 HABITAT AND NICHE KEY CONCEPT Every organism has a habitat and a niche. A habitat is all of the living and nonliving factors in the area where an organism lives. For example, the habitat of a frog

More information

A Small Migrating Herd. Mapping Wildlife Distribution 1. Mapping Wildlife Distribution 2. Conservation & Reserve Management

A Small Migrating Herd. Mapping Wildlife Distribution 1. Mapping Wildlife Distribution 2. Conservation & Reserve Management A Basic Introduction to Wildlife Mapping & Modeling ~~~~~~~~~~ Rev. Ronald J. Wasowski, C.S.C. Associate Professor of Environmental Science University of Portland Portland, Oregon 8 December 2015 Introduction

More information

Geostatistics and Spatial Scales

Geostatistics and Spatial Scales Geostatistics and Spatial Scales Semivariance & semi-variograms Scale dependence & independence Ranges of spatial scales Variable dependent Fractal dimension GIS implications Spatial Modeling Spatial Analysis

More information

Name Student ID. Good luck and impress us with your toolkit of ecological knowledge and concepts!

Name Student ID. Good luck and impress us with your toolkit of ecological knowledge and concepts! Page 1 BIOLOGY 150 Final Exam Winter Quarter 2000 Before starting be sure to put your name and student number on the top of each page. MINUS 3 POINTS IF YOU DO NOT WRITE YOUR NAME ON EACH PAGE! You have

More information

Climate Change Vulnerability Assessment for Species

Climate Change Vulnerability Assessment for Species Climate Change Vulnerability Assessment for Species SPECIES: Specify whether you are assessing the entire species or particular populations: This tool assesses the vulnerability or resilience of species

More information

Metapopulation modeling: Stochastic Patch Occupancy Model (SPOM) by Atte Moilanen

Metapopulation modeling: Stochastic Patch Occupancy Model (SPOM) by Atte Moilanen Metapopulation modeling: Stochastic Patch Occupancy Model (SPOM) by Atte Moilanen 1. Metapopulation processes and variables 2. Stochastic Patch Occupancy Models (SPOMs) 3. Connectivity in metapopulation

More information

Conservation and Management for Multiple Species: Integrating Field Research and Modeling into Management Decisions

Conservation and Management for Multiple Species: Integrating Field Research and Modeling into Management Decisions DOI: 10.1007/s002670010063 Conservation and Management for Multiple Species: Integrating Field Research and Modeling into Management Decisions H. REŞIT AKÇAKAYA Applied Biomathematics 100 North Country

More information

Natalie Cabrera GSP 370 Assignment 5.5 March 1, 2018

Natalie Cabrera GSP 370 Assignment 5.5 March 1, 2018 Network Analysis: Modeling Overland Paths Using a Least-cost Path Model to Track Migrations of the Wolpertinger of Bavarian Folklore in Redwood National Park, Northern California Natalie Cabrera GSP 370

More information

The Use of GIS in Habitat Modeling

The Use of GIS in Habitat Modeling Amy Gottfried NRS 509 The Use of GIS in Habitat Modeling In 1981, the U.S. Fish and Wildlife Service established a standard process for modeling wildlife habitats, the Habitat Suitability Index (HSI) and

More information

HABITAT EFFECTIVENESS AND SECURITY AREA ANALYSES

HABITAT EFFECTIVENESS AND SECURITY AREA ANALYSES HABITAT EFFECTIVENESS AND SECURITY AREA ANALYSES ESGBP 194 12. HABITAT EFFECTIVENESS AND SECURITY AREA ANALYSIS Michael Gibeau As demands on the land increase, cumulative effects result from individually

More information

CHAPTER 1 - INTRODUCTION. Habitat fragmentation, or the subdivision of once-continuous tracts of habitat into

CHAPTER 1 - INTRODUCTION. Habitat fragmentation, or the subdivision of once-continuous tracts of habitat into CHAPTER 1 - INTRODUCTION Habitat fragmentation, or the subdivision of once-continuous tracts of habitat into discontinuous patches, has been implicated as a primary factor in the loss of species (Harris

More information

Lab 7: Cell, Neighborhood, and Zonal Statistics

Lab 7: Cell, Neighborhood, and Zonal Statistics Lab 7: Cell, Neighborhood, and Zonal Statistics Exercise 1: Use the Cell Statistics function to detect change In this exercise, you will use the Spatial Analyst Cell Statistics function to compare the

More information

ENV208/ENV508 Applied GIS. Week 1: What is GIS?

ENV208/ENV508 Applied GIS. Week 1: What is GIS? ENV208/ENV508 Applied GIS Week 1: What is GIS? 1 WHAT IS GIS? A GIS integrates hardware, software, and data for capturing, managing, analyzing, and displaying all forms of geographically referenced information.

More information

The study of living organisms in the natural environment How they interact with one another How the interact with their nonliving environment

The study of living organisms in the natural environment How they interact with one another How the interact with their nonliving environment The study of living organisms in the natural environment How they interact with one another How the interact with their nonliving environment ENERGY At the core of every organism s interactions with the

More information

The Emerging Role of Enterprise GIS in State Forest Agencies

The Emerging Role of Enterprise GIS in State Forest Agencies The Emerging Role of Enterprise GIS in State Forest Agencies Geographic Information System (GIS) A geographic information system (GIS) is a computer software system designed to capture, store, manipulate,

More information

Applications of GIS in Electrical Power System

Applications of GIS in Electrical Power System Applications of GIS in Electrical Power System Abdulrahman M. AL-Sakkaf 201102310 CRP 514 May 2013 Dr. Baqer M. AL-Ramadan Abstract GIS has been widely used in various areas and disciplines. This paper

More information

Opportunities to Improve Ecological Functions of Floodplains and Reduce Flood Risk along Major Rivers in the Puget Sound Basin

Opportunities to Improve Ecological Functions of Floodplains and Reduce Flood Risk along Major Rivers in the Puget Sound Basin Opportunities to Improve Ecological Functions of Floodplains and Reduce Flood Risk along Major Rivers in the Puget Sound Basin Christopher Konrad, US Geological Survey Tim Beechie, NOAA Fisheries Managing

More information

III Introduction to Populations III Introduction to Populations A. Definitions A population is (Krebs 2001:116) a group of organisms same species

III Introduction to Populations III Introduction to Populations A. Definitions A population is (Krebs 2001:116) a group of organisms same species III Introduction to s III Introduction to s A. Definitions B. characteristics, processes, and environment C. Uses of dynamics D. Limits of a A. Definitions What is a? A is (Krebs 2001:116) a group of organisms

More information

Ecological Response Units Ecosystem Mapping System for the Southwest US

Ecological Response Units Ecosystem Mapping System for the Southwest US Ecological Response Units Ecosystem Mapping System for the Southwest US J. C. Moreland, W. A. Robbie, F. J. Triepke, E. H. Muldavin, and J. R. Malusa Objectives What are Ecological Response Units? What

More information

3.3 Threats to Biodiversity

3.3 Threats to Biodiversity Name: Date: Class: IB Environmental Systems and Societies 3.3 Threats to Biodiversity Significant ideas: While global biodiversity is difficult to quantify, it is decreasing rapidly due to human activity.

More information

Vanishing Species 5.1. Before You Read. Read to Learn. Biological Diversity. Section. What do biodiversity studies tell us?

Vanishing Species 5.1. Before You Read. Read to Learn. Biological Diversity. Section. What do biodiversity studies tell us? Vanishing Species Before You Read Dinosaurs are probably the most familiar organisms that are extinct, or no longer exist. Many plants and animals that are alive today are in danger of dying out. Think

More information

Land Cover Classification Mapping & its uses for Planning

Land Cover Classification Mapping & its uses for Planning Land Cover Classification Mapping & its uses for Planning What is Land Cover Classification Mapping? Examples of an actual product Why use Land Cover Classification Mapping for planning? Possible uses

More information

Author(s): Charles K. Cover, P.E. Federal Energy Regulatory Commission

Author(s): Charles K. Cover, P.E. Federal Energy Regulatory Commission Using GIS to Help Manage a National Energy Program Author(s): Charles K. Cover, P.E. Federal Energy Regulatory Commission The Federal Energy Regulatory Commission (FERC) has statutory oversight on key

More information

Using Landsat Imagery to Model Increasing Habitat Fragmentation and Its Effects on Tree Migration Abstract

Using Landsat Imagery to Model Increasing Habitat Fragmentation and Its Effects on Tree Migration Abstract Using Landsat Imagery to Model Increasing Habitat Fragmentation and Its Effects on Tree Migration Abstract Numerous models, such as that by Iverson and Prasad (1998), have been developed to investigate

More information

Rain Forests. America's. Forests & Sunlight. Exploring Your World. Prince William Network's OVERVIEW OBJECTIVES SUBJECTS

Rain Forests. America's. Forests & Sunlight. Exploring Your World. Prince William Network's OVERVIEW OBJECTIVES SUBJECTS Forests & Sunlight Exploring Your World National Science Education Standards Unifying Concepts and Processes Constancy, change and measurement. Standard A: Science as Inquiry Abilities necessary to do

More information

Chapter 1: Introduction to Safety and Ethics

Chapter 1: Introduction to Safety and Ethics Core Curriculum Standards Met by Each Chapter On the Right Trail meets Utah s Social Studies Core Curriculum Standards for grades 3-7. Each chapter has specific standard objectives, which are met by the

More information

Modeling Disease Transmission in Long-tailed Macaques on Bali

Modeling Disease Transmission in Long-tailed Macaques on Bali Modeling Disease Transmission in Long-tailed Macaques on Bali Kelly Lane Gerhard Niederwieser Ryan Kennedy University of Notre Dame Macaque Background Coexisted in temples across the island for at least

More information

Four aspects of a sampling strategy necessary to make accurate and precise inferences about populations are:

Four aspects of a sampling strategy necessary to make accurate and precise inferences about populations are: Why Sample? Often researchers are interested in answering questions about a particular population. They might be interested in the density, species richness, or specific life history parameters such as

More information

NEW TOOLS TO IMPROVE DESKTOP SURVEYS

NEW TOOLS TO IMPROVE DESKTOP SURVEYS NEW TOOLS TO IMPROVE DESKTOP SURVEYS Pablo Vengoechea (Telemediciones S.A.), Jorge O. García (Telemediciones S.A.), Email: Telemediciones S.A. / Cra. 46 94-17 Bogotá D.C.

More information

Math/Stat Classification of Spatial Analysis and Spatial Statistics Operations

Math/Stat Classification of Spatial Analysis and Spatial Statistics Operations Draft3, April 2012 Math/Stat Classification of Spatial Analysis and Spatial Statistics Operations for MapCalc software distributed by Berry & Associates // Spatial Information Systems Alternative frameworks

More information

USING THE MILITARY LENSATIC COMPASS

USING THE MILITARY LENSATIC COMPASS USING THE MILITARY LENSATIC COMPASS WARNING This presentation is intended as a quick summary, and not a comprehensive resource. If you want to learn Land Navigation in detail, either buy a book; or get

More information

Levels of Ecological Organization. Biotic and Abiotic Factors. Studying Ecology. Chapter 4 Population Ecology

Levels of Ecological Organization. Biotic and Abiotic Factors. Studying Ecology. Chapter 4 Population Ecology Chapter 4 Population Ecology Lesson 4.1 Studying Ecology Levels of Ecological Organization Biotic and Abiotic Factors The study of how organisms interact with each other and with their environments Scientists

More information

Chapter 4 Population Ecology

Chapter 4 Population Ecology Chapter 4 Population Ecology Lesson 4.1 Studying Ecology Levels of Ecological Organization The study of how organisms interact with each other and with their environments Scientists study ecology at various

More information

Grant Opportunity Monitoring Bi-State Sage-grouse Populations in Nevada

Grant Opportunity Monitoring Bi-State Sage-grouse Populations in Nevada Grant Opportunity Monitoring Bi-State Sage-grouse Populations in Nevada Proposals are due no later than November 13, 2015. Grant proposal and any questions should be directed to: Shawn Espinosa @ sepsinosa@ndow.org.

More information

15-1 The Puzzle of Life's Diversity Slide 1 of 20

15-1 The Puzzle of Life's Diversity Slide 1 of 20 1 of 20 Evolution is the process by which modern organisms have descended from ancient organisms. * Known as biological change over time A scientific theory is a well-supported testable explanation of

More information

Chapter 6 Population and Community Ecology

Chapter 6 Population and Community Ecology Chapter 6 Population and Community Ecology Friedland and Relyea Environmental Science for AP, second edition 2015 W.H. Freeman and Company/BFW AP is a trademark registered and/or owned by the College Board,

More information

WEBINAR AGENDA. Review of connectivity mapping progress to date. Describe draft methodology for delineating and validating core areas

WEBINAR AGENDA. Review of connectivity mapping progress to date. Describe draft methodology for delineating and validating core areas WEBINAR AGENDA Review of connectivity mapping progress to date Describe draft methodology for delineating and validating core areas Review examples of the methodology implemented in the Highlands Explain

More information

An Introduction to Day Two. Linking Conservation and Transportation Planning Lakewood, Colorado August 15-16, 16, 2006

An Introduction to Day Two. Linking Conservation and Transportation Planning Lakewood, Colorado August 15-16, 16, 2006 An Introduction to Day Two Linking Conservation and Transportation Planning Lakewood, Colorado August 15-16, 16, 2006 1 Agenda Day One Transportation Planning Heritage Program State Wildlife Action Plan

More information

ASSESSING THE IMPACT OF LAND COVER SPATIAL RESOLUTION ON FOREST FRAGMENTATION MODELING INTRODUCTION

ASSESSING THE IMPACT OF LAND COVER SPATIAL RESOLUTION ON FOREST FRAGMENTATION MODELING INTRODUCTION ASSESSING THE IMPACT OF LAND COVER SPATIAL RESOLUTION ON FOREST FRAGMENTATION MODELING James D. Hurd, Research Associate Daniel L. Civco, Director and Professor Center for Land use Education and Research

More information

Ecological Succession

Ecological Succession Primary Climax Community Ecological Secondary (young) Secondary (old) Interdependence Within Environmental Systems 323 324 Interdependence within Environmental Systems Teacher Pages Purpose The purpose

More information

Road-based Landscape Metrics for Quantifying Habitat Fragmentation

Road-based Landscape Metrics for Quantifying Habitat Fragmentation University of South Florida Scholar Commons Graduate Theses and Dissertations Graduate School 2011 Road-based Landscape Metrics for Quantifying Habitat Fragmentation Rebecca Whitehead Loraamm University

More information

Climate Change and Invasive Plants in the Pacific Northwest

Climate Change and Invasive Plants in the Pacific Northwest Climate Change and Invasive Plants in the Pacific Northwest David W Peterson Becky K Kerns Ecosystem Dynamics and Environmental Change Team Threat Characterization and Management Program Pacific Northwest

More information

Chapter 6 Population and Community Ecology. Thursday, October 19, 17

Chapter 6 Population and Community Ecology. Thursday, October 19, 17 Chapter 6 Population and Community Ecology Module 18 The Abundance and Distribution of After reading this module you should be able to explain how nature exists at several levels of complexity. discuss

More information

Linking local multimedia models in a spatially-distributed system

Linking local multimedia models in a spatially-distributed system Linking local multimedia models in a spatially-distributed system I. Miller, S. Knopf & R. Kossik The GoldSim Technology Group, USA Abstract The development of spatially-distributed multimedia models has

More information

software, just as word processors or databases are. GIS was originally developed and cartographic capabilities have been augmented by analysis tools.

software, just as word processors or databases are. GIS was originally developed and cartographic capabilities have been augmented by analysis tools. 1. INTRODUCTION 1.1Background A GIS is a Geographic Information System, a software package for creating, viewing, and analyzing geographic information or spatial data. GIS is a class of software, just

More information

GPS Measurement Protocol

GPS Measurement Protocol GPS Measurement Protocol Purpose To determine the latitude, longitude, and elevation of your school and of all your GLOBE sites Overview The GPS receiver will be used to determine the latitude, longitude

More information

LAB EXERCISE #2 Quantifying Patch Mosaics

LAB EXERCISE #2 Quantifying Patch Mosaics LAB EXERCISE #2 Quantifying Patch Mosaics Instructors: K. McGarigal Overview: In this exercise, you will learn to appreciate the challenges of quantifying patch mosaics and gain practical hands-on experience

More information

It s a Model. Quantifying uncertainty in elevation models using kriging

It s a Model. Quantifying uncertainty in elevation models using kriging It s a Model Quantifying uncertainty in elevation models using kriging By Konstantin Krivoruchko and Kevin Butler, Esri Raster based digital elevation models (DEM) are the basis of some of the most important

More information

Geographic Information Systems(GIS)

Geographic Information Systems(GIS) Geographic Information Systems(GIS) Threat Analysis Techniques Overview What is GIS? Functional capabilities of GIS BCM Process and GIS How to leverage GIS in threat/risk analysis Ron Brown, CBCP Managing

More information

Resolving habitat classification and structure using aerial photography. Michael Wilson Center for Conservation Biology College of William and Mary

Resolving habitat classification and structure using aerial photography. Michael Wilson Center for Conservation Biology College of William and Mary Resolving habitat classification and structure using aerial photography Michael Wilson Center for Conservation Biology College of William and Mary Aerial Photo-interpretation Digitizing features of aerial

More information

Ecological Succession. A Change in the Ecological Community Over Time

Ecological Succession. A Change in the Ecological Community Over Time Ecological Succession A Change in the Ecological Community Over Time Ecological Succession is The observed process of change in the species structure of an ecological community over time. A new ecological

More information

***When doing the lab report write-up, be sure to follow the guidelines.***

***When doing the lab report write-up, be sure to follow the guidelines.*** Topographic Maps Lab Vocabulary: topography - study of the shapes and features of the earth's surface elevation - height above sea level bench mark - a point that has been accurately measured for its position

More information

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands.

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. GIS LAB 7 The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. This lab will ask you to work with the Spatial Analyst extension.

More information

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde ArcGIS Enterprise: What s New Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde ArcGIS Enterprise is the new name for ArcGIS for Server ArcGIS Enterprise Software Components ArcGIS Server Portal

More information

Modeling Incident Density with Contours in ArcGIS Pro

Modeling Incident Density with Contours in ArcGIS Pro Modeling Incident Density with Contours in ArcGIS Pro By Mike Price, Entrada/San Juan, Inc. What you will need ArcGIS Pro 1.4 license or later ArcGIS Spatial Analyst license ArcGIS Online for organizational

More information

Landscape Connectivity & Metapopulation Dynamics

Landscape Connectivity & Metapopulation Dynamics Shelby Southworth 509: Concepts in GIS & RS December 6 th, 2012 Landscape Connectivity & Metapopulation Dynamics The natural world is growing increasingly fragmented due to human activities, and once expansive

More information

Give 4 advantages of using ICT in the collection of data. Give. Give 4 disadvantages in the use of ICT in the collection of data

Give 4 advantages of using ICT in the collection of data. Give. Give 4 disadvantages in the use of ICT in the collection of data Give 4 advantages of using ICT in the collection of data can use a handheld GPS to get accurate location information which can be used to show data linked to specific locations within a GIS can collect

More information

Focal Resource: BIGHORN SHEEP

Focal Resource: BIGHORN SHEEP Focal Resource: BIGHORN SHEEP Taxonomy and Related Information: Bighorn sheep (Ovis canadensis); south Sierra, White and Inyo Mountains, perhaps more on east side. SENSITIVITY RESULTS.7 ADAPTIVE CAPACITY

More information

AP Biology Evolution Review Slides

AP Biology Evolution Review Slides AP Biology Evolution Review Slides How would one go about studying the evolution of a tetrapod limb from a fish s fin? Compare limb/fin structure of existing related species of fish to tetrapods Figure

More information

SPATIAL ANALYSIS. Transformation. Cartogram Central. 14 & 15. Query, Measurement, Transformation, Descriptive Summary, Design, and Inference

SPATIAL ANALYSIS. Transformation. Cartogram Central. 14 & 15. Query, Measurement, Transformation, Descriptive Summary, Design, and Inference 14 & 15. Query, Measurement, Transformation, Descriptive Summary, Design, and Inference Geographic Information Systems and Science SECOND EDITION Paul A. Longley, Michael F. Goodchild, David J. Maguire,

More information

A Simulation of the Process of Evolution Modified from Biology Labs On-Line (Pearson)

A Simulation of the Process of Evolution Modified from Biology Labs On-Line (Pearson) A Simulation of the Process of Evolution Modified from Biology Labs On-Line (Pearson) Biology Labs On-line EvolutionLab is a simulation which allows you to study the principles and processes behind the

More information

How to make the European landscape climate-change proof for biodiversity? Prof. Paul Opdam

How to make the European landscape climate-change proof for biodiversity? Prof. Paul Opdam How to make the European landscape climate-change proof for biodiversity? Prof. Paul Opdam Notions Habitat fragmentation and land use prevent species to respond to climate change Adaptation of the landscape

More information

The Invasion of False Brome in Western Oregon

The Invasion of False Brome in Western Oregon The Invasion of False Brome in Western Oregon GIS II Presentation Winter 2006 Will Fellers Kurt Hellerman Kathy Strope Statia Cupit False Brome (Brachypodium sylvaticum) Perennial bunchgrass native to

More information

Combining Deterministic and Probabilistic Methods to Produce Gridded Climatologies

Combining Deterministic and Probabilistic Methods to Produce Gridded Climatologies Combining Deterministic and Probabilistic Methods to Produce Gridded Climatologies Michael Squires Alan McNab National Climatic Data Center (NCDC - NOAA) Asheville, NC Abstract There are nearly 8,000 sites

More information

Session-Based Queueing Systems

Session-Based Queueing Systems Session-Based Queueing Systems Modelling, Simulation, and Approximation Jeroen Horters Supervisor VU: Sandjai Bhulai Executive Summary Companies often offer services that require multiple steps on the

More information

Chapter 5 Evolution of Biodiversity

Chapter 5 Evolution of Biodiversity Chapter 5 Evolution of Biodiversity Biodiversity What is biodiversity? How does evolution occur? What is an ecological niche? Earth is Home to a Tremendous Diversity of Species Ecosystem diversity the

More information

Description of Simandou Archaeological Potential Model. 12A.1 Overview

Description of Simandou Archaeological Potential Model. 12A.1 Overview 12A Description of Simandou Archaeological Potential Model 12A.1 Overview The most accurate and reliable way of establishing archaeological baseline conditions in an area is by conventional methods of

More information

Bryan F.J. Manly and Andrew Merrill Western EcoSystems Technology Inc. Laramie and Cheyenne, Wyoming. Contents. 1. Introduction...

Bryan F.J. Manly and Andrew Merrill Western EcoSystems Technology Inc. Laramie and Cheyenne, Wyoming. Contents. 1. Introduction... Comments on Statistical Aspects of the U.S. Fish and Wildlife Service's Modeling Framework for the Proposed Revision of Critical Habitat for the Northern Spotted Owl. Bryan F.J. Manly and Andrew Merrill

More information

Lecture 2: Individual-based Modelling

Lecture 2: Individual-based Modelling Lecture 2: Individual-based Modelling Part I Steve Railsback Humboldt State University Department of Mathematics & Lang, Railsback & Associates Arcata, California USA www.langrailsback.com 1 Outline 1.

More information

Biology Slide 1 of 20

Biology Slide 1 of 20 Biology 1 of 20 2 of 20 15-1 The Puzzle of Life's Evolution is the process by which modern organisms have descended from ancient organisms. A scientific theory is a well-supported testable explanation

More information

Managing Grizzly Bear Data. ESRI 2009 International User Conference, San Diego, California Presented by: Julie Duval, July 15, 2009

Managing Grizzly Bear Data. ESRI 2009 International User Conference, San Diego, California Presented by: Julie Duval, July 15, 2009 Managing Grizzly Bear Data ESRI 2009 International User Conference, San Diego, California Presented by: Julie Duval, July 15, 2009 Agenda 1) Overview of the Foothills Research Institute 2) Grizzly Bear

More information

Gray Whale Migration and Feeding Introduction to Geographic Information System Use in Marine Biology

Gray Whale Migration and Feeding Introduction to Geographic Information System Use in Marine Biology Gray Whale Migration and Feeding Introduction to Geographic Information System Use in Marine Biology Developed by: Bert Pooth and Eric A. Sproles Before you begin using this module, you will need to know

More information

RESERVE DESIGN INTRODUCTION. Objectives. In collaboration with Wendy K. Gram. Set up a spreadsheet model of a nature reserve with two different

RESERVE DESIGN INTRODUCTION. Objectives. In collaboration with Wendy K. Gram. Set up a spreadsheet model of a nature reserve with two different RESERVE DESIGN In collaboration with Wendy K. Gram Objectives Set up a spreadsheet model of a nature reserve with two different habitats. Calculate and compare abundances of species with different habitat

More information

Visitor Flows Model for Queensland a new approach

Visitor Flows Model for Queensland a new approach Visitor Flows Model for Queensland a new approach Jason. van Paassen 1, Mark. Olsen 2 1 Parsons Brinckerhoff Australia Pty Ltd, Brisbane, QLD, Australia 2 Tourism Queensland, Brisbane, QLD, Australia 1

More information

Waterborne Environmental, Inc., Leesburg, VA, USA 2. Syngenta Crop Protection, LLC, North America 3. Syngenta Crop Protection, Int.

Waterborne Environmental, Inc., Leesburg, VA, USA 2. Syngenta Crop Protection, LLC, North America 3. Syngenta Crop Protection, Int. Application of High Resolution Elevation Data (LiDAR) to Assess Natural and Anthropogenic Agricultural Features Affecting the Transport of Pesticides at Multiple Spatial Scales Josh Amos 1, Chris Holmes

More information

PROGRESS REPORT for COOPERATIVE BOBCAT RESEARCH PROJECT. Period Covered: 1 January 31 May Prepared by

PROGRESS REPORT for COOPERATIVE BOBCAT RESEARCH PROJECT. Period Covered: 1 January 31 May Prepared by PROGRESS REPORT for COOPERATIVE BOBCAT RESEARCH PROJECT Period Covered: 1 January 31 May 2011 Prepared by John A. Litvaitis, Derek Broman, and Marian K. Litvaitis Department of Natural Resources University

More information

Population viability analysis

Population viability analysis Population viability analysis Introduction The process of using models to determine risks of decline faced by populations was initially defined as population vulnerability analysis [1], but is now known

More information

Renewable Energy Development and Airborne Wildlife Conservation

Renewable Energy Development and Airborne Wildlife Conservation Whitepaper ECHOTRACK TM RADAR ACOUSTIC TM SURVEILLANCE SYSTEM Renewable Energy Development and Airborne Wildlife Conservation Renewable energy developers must meet regulatory requirements to mitigate for

More information

Ch 5. Evolution, Biodiversity, and Population Ecology. Part 1: Foundations of Environmental Science

Ch 5. Evolution, Biodiversity, and Population Ecology. Part 1: Foundations of Environmental Science Ch 5 Evolution, Biodiversity, and Population Ecology Part 1: Foundations of Environmental Science PowerPoint Slides prepared by Jay Withgott and Heidi Marcum Copyright 2006 Pearson Education, Inc., publishing

More information

Interactions among Land, Water, and Vegetation in Shoreline Arthropod Communities

Interactions among Land, Water, and Vegetation in Shoreline Arthropod Communities AMERICAN JOURNAL OF UNDERGRADUATE RESEARCH VOL., NO.. () Interactions among Land, Water, and Vegetation in Shoreline Arthropod Communities Randall D. Willoughby and Wendy B. Anderson Department of Biology

More information

Resilient Landscapes Fund

Resilient Landscapes Fund Resilient Landscapes Fund Definitions and Map Guide 2017 This document includes definitions of key terms and instructions for developing maps for application to OSI s Resilient Landscapes Fund. INTRODUCTION

More information

ENVE203 Environmental Engineering Ecology (Nov 05, 2012)

ENVE203 Environmental Engineering Ecology (Nov 05, 2012) ENVE203 Environmental Engineering Ecology (Nov 05, 2012) Elif Soyer Ecosystems and Living Organisms Population Density How Do Populations Change in Size? Maximum Population Growth Environmental Resistance

More information