+ All Categories
Home > Documents > Environmental GIS

Environmental GIS

Date post: 19-Mar-2016
Category:
Upload: chet
View: 47 times
Download: 0 times
Share this document with a friend
Description:
Environmental GIS. Nicholas A. Procopio, Ph.D, GISP [email protected]. Analyzing species point data. Activity Range Probability range Nearest Neighbors Spatial autocorrelation. Activity Range. Minimum Convex Polygons - PowerPoint PPT Presentation
23
Environmental GIS Nicholas A. Procopio, Ph.D, GISP [email protected]
Transcript
Page 1: Environmental GIS

Environmental GIS

Nicholas A. Procopio, Ph.D, GISP

[email protected]

Page 2: Environmental GIS

Analyzing species point data Activity Range Probability range Nearest Neighbors Spatial autocorrelation

Page 3: Environmental GIS

Activity Range Minimum Convex Polygons

• completely encloses all data points by connecting the outer locations in such a way as to create a convex polygon.

• Describes the Activity Range

Page 4: Environmental GIS

Activity Range An activity range, as defined with the

minimum convex-polygon method, consists of the area bounded by the outermost telemetry locations of an animal.

Page 5: Environmental GIS

Core Activity Area The kernel method can be used to

estimate general (95% isopleth) and core (50% isopleth) activity areas corresponding to the intensity of activity in an area

Other percentiles can also be used. Uses a kernaling methodolgy which

is dependent on a SELECTED bandwidth.

Page 6: Environmental GIS

weights points that are further away less than those that are close.

Kernel estimation attempts to obtain a smooth estimate of the probability density (aka a smoothed histogram).

Issues: choice of ‘kernel’, bandwidth

Kernal Estimation

Page 7: Environmental GIS

Bandwidth is all important• This raises an obvious issue with modelling

continuous processes…..the scale (in this case the bandwidth) must be carefully considered.

• Striking a balance between too small a bandwidth (possible high errors for some predictions) and a large bandwidth (low errors in all predictions) is essential.

• Knowledge of the biology and ecology of the system is important to making these types of judgments.

• It really becomes “plug and play”.

Page 8: Environmental GIS

http://www.spatialecology.com/gme/

Use withArcMap 10

Use Hawth’s Tools with earlier versions of ArcMap

Page 9: Environmental GIS

•Uses a separate command line interface.

•Has good command assistance.

•Generates spatial files (shapefile or raster) that can be added into ArcMap.

Page 10: Environmental GIS
Page 11: Environmental GIS

Individual MCPs

genmcp(in="c:\du\points.shp", out="c:\du\points_mcp.shp", uidfield="Id");or

genmcp(in="c:\du\points.shp", out="c:\du\points_mcp2.shp", where="Id=2");

Page 12: Environmental GIS

A single MCP

genmcp(in="c:\du\points.shp", out="c:\du\points_mcp.shp");

Page 13: Environmental GIS

Location points to movement path

Requires a unique id field and an order field

convert.pointstolines(in="c:\du\points.shp", uidfield="Id", orderfield="rec", out="c:\du\point_lines.shp");

Page 14: Environmental GIS

Generate Probable Activity Areas

•Note that the 50%, 90% or 95% polygon area that is generated represents that percentage of the area (or volume) of coincidence.

•This is based on the distribution of the points and will not necessarily include i.e. 50% of the points.

•It shows an estimate of where the critter could have been found i.e. 50% of the time.

•It is an interpolation of the data. 

Page 15: Environmental GIS

Generate Probable Activity Areas2 step process

Page 16: Environmental GIS

Generate the Kernal Density raster:kde(in="C:\du\points.shp", out="C:\du\kde5_30", bandwidth=100000, cellsize = 30, where="Id=1");WHERE clause: Id=1KDE completed successfully

Generate the Isopleth layerisopleth(in="C:\du\kde5_30", out="C:\du\isopleths5_30.shp", quantiles=c(0.5, 0.9, 0.95));The input quantiles were used to determine the raster value at which to calculate the isopleth lines as follows:Quantile, Isopleth Value0.5, 0.1036908879130280.9, 0.03161489202353710.95, 0.0180086184523985

3 isopleths processed.

Generate Probable Activity Areas2 step process

Page 17: Environmental GIS

Probable activity areas

Page 18: Environmental GIS

Probable activity areas

Page 19: Environmental GIS

Probable activity areasincreased bandwidth (500,000)

Page 20: Environmental GIS

Probable activity areasdecreased bandwidth (10,000)

Page 21: Environmental GIS

total distance moved (the sum of all linear distances between locations)

range length (linear distance between the two most distant locations)

mean distance moved per day (total distance moved, divided by the total number of days monitored)

and mean distance per move (average of all distances between locations).

The distance moved from hibernaculum (linear distance between the hibernaculum and the most distant location).

Other meaningful stats.

Page 22: Environmental GIS
Page 23: Environmental GIS

Recommended