Whitebox Geospatial Analysis Tools Tutorial Series. Tutorial 3: Streams and Watershed Extraction

Size: px
Start display at page:

Download "Whitebox Geospatial Analysis Tools Tutorial Series. Tutorial 3: Streams and Watershed Extraction"

Transcription

1 1 Whitebox Geospatial Analysis Tools Tutorial Series Tutorial 3: Streams and Watershed Extraction

2 2 Tutorial version 1.0, March, 2010 Written by John Lindsay, Whitebox Geospatial Analysis Tools Project Lead Developer, The Centre for Hydrogeomatics, The University of Guelph, Guelph, Canada, This tutorial has been prepared by John Lindsay as part of Government of Canada contract #AM W.

3 3 Preamble This tutorial will cover the following topics: 1. DEM flow enforcement 2. Creating the flow-pointer grid 3. Creating the flow-accumulation grid 4. Extracting the stream network 5. Stream network analysis 6. Extracting watersheds Certain data files are necessary for completing this tutorial and should have been distributed with this document. The data files may have been distributed in a single compressed zip file, in which case the data will need to be uncompressed prior to commencing the tutorial. The data files include: I. Az DEM.dep and Az DEM.tas II. Hillshade.dep and Hillshade.tas III. Tutorial Map.wmc Please note that the following tutorial has been prepared with Whitebox GAT version Some of the material contained in this document may not be compatible with previous or future versions of the software. 1.0 Introduction Among of the most common applications for DEMs are the automated delineation of stream networks and watersheds. These features are fundamental units for environmental modelling and management because they partition landscapes in a way that is relevant to the geomorphical and hydrological

4 4 processes operating in an area. The stream network, for example, is the boundary between the concentrated processes acting in channels (e.g. channel incision) and the diffusive processes acting on the surrounding hillslopes (e.g. wash flow). From a hydrological point of view, precipitation falling on either side of a watershed divide will follow different flowpaths, with potential implications for water quality. Therefore, an understanding of the theoretical and technical aspects of stream network and watershed extraction is important. In this tutorial, you will follow the process involved in automated stream network and watershed extraction in Whitebox GAT. 2.0 DEM Flow Enforcement 2.1 The Flow-Routing Concept: Overland and near-surface water flow can be modeled using DEMs if we assume that surface topography is the sole factor in the distribution of water. One very simple model routes all water from a particular grid cell in a DEM to a single neighbouring cell (i.e., water is not partitioned between multiple neighbours). This D8 (8 direction) method (O'Callaghan and Mark, 1984), sets the flow direction toward the lowest of the eight neighbouring cells, in relation to the centre cell. Therefore, flow is allowed in one of eight possible directions, assuming that water will travel along the steepest downslope path. Based on the 3 x 3 cell neighbourhood in Figure 1, flow would be directed from the centre cell (elevation of 8) to the southwest cell (elevation of 4). grid cell Figure 1. A small grid of elevations. The arrow represents the direction of flow out of the centre 2.2 Interruptions to Drainage Networks:

5 5 Flow direction is undefined when a grid cell, or group of grid cells, is lower than all neighbouring cells. In essence, all water that enters a cell with no downslope neighbour is unable to get out and becomes stuck. We refer to these features as pits if they are a single cell in size, and depressions if they consist of groups of cells. Often, these features are artifacts of the data and should be removed during DEM preprocessing. Pre-processing involves altering the elevations of a DEM in a way that enforces continuous flow-paths. It is important to realize that sometimes these digital depressions reflect actual features in the landscape, and should be preserved during flow modelling. However, for our work, we will assume that all depressions in DEMs are artifacts and are justified in being removed. Several methods have been developed for removing depressions from DEMs. These methods vary greatly in terms of their sophistication and impact on the DEM. The two most common depressionremoval methods are depression filling and depression breaching. Depression filling raises cells within a depression to the elevation of the outlet cell (i.e. the lowest cell on the depressions catchment). Depression breaching digs a trench from a depression s bottom to some point downslope. At the time of writing, the only approach available in Whitebox is depression filling. Depression filling is probably the most commonly used approach to the remove of depressions from DEM, though some work has suggested that it is not as appropriate as depression breaching. Depression breaching will be available in future versions of the software. Not all interruptions to flow routing are caused by depression cells. Often, DEMs contain extensive flat regions (areas of equal elevation). Flat areas interrupt flow routing in the same way as depressions. Cells within a flat region do not have downslope neighbours, and therefore, flow routing is impossible on flat sites without pre-processing. Correction of flow direction on flat sites typically involves finding an outlet cell, forcing flow from cells adjacent to the outlet to the outlet, and continuing backwards in an iterative manner (e.g., Jenson and Dominique, 1988). Both topographic depressions and flat areas are usually removed in the same pre-processing step, often by the same algorithm, creating a 'hydrologically corrected' DEM with continuous flow-paths connecting each grid cell to some outlet cell along the edge of the grid. Open the Whitebox map composition (.wmc) file 'Tutorial Map' either by selecting Open Map from the File menu or by pressing the Open Map button from the toolbar. This file will be located in the directory that you downloaded and uncompressed the data files for this tutorial into (notice that it will require that all of the data files described in the preamble are located in the same directory). A

6 6 hillshaded DEM of an mountainous area in Arizona should be displayed. The data have been derived from the Shuttle Radar Topography Mission (SRTM) data set. Aside from changing the coordinate system from the original geographic coordinates (latitude and longitude) and filling in missing data holes, the DEM has not had substantial pre-processing, meaning that it likely contains topographic depressions and possibly flat areas, which will impede the delineation of surface flow-paths. Use the Fill Depressions tool contained in the DEM Pre-processing toolbox, itself contained in the Hydrological Tools toolbox (alternatively select FillDeps from the Tool Quick Launch), to remove the topographic depressions and flat areas from the DEM. Call the output DEM 'DEM filled'. The tool may take considerable time to complete depending on your computer's processing power and resources. When it is complete, the new DEM will be displayed. 3.0 Creating the Flow Pointer Grid Now that a DEM with all interruptions to flow removed has been created, we can continue to calculate the parameters needed to define the drainage network, i.e. the topological network describing how each cell in a DEM is connected to all others. The flow-pointer data layer stores the flow direction of each cell in a raster grid, and thus, the topology of the entire surface drainage network. The exact nature of these data depends on the method used to derive the flow directions. Whitebox GAT stores D8 pointers as binary numbers (Figure 2) such that: NW N NE W E SW S SE Figure 2: Possible flow direction pointers for the grid cell shaded in grey Grid cells that have no downslope neighbour are assigned a value of zero, though the only such grid cells that should occur in a hydrologically corrected DEM should be located along the edges of the

7 7 grid. Notice that the various numerical values contained in a D8 flow-pointer grid simply represent the direction (north, north-east, east, etc.) that water, or any other flow type, entering the grid cell will be directed to on its way through the cell. Flow-pointer grids are not necessarily useful for visualization purposes themselves, but rather, are used as inputs to a great many other tools, as we will see. The above example describes the simplest and most commonly used flow-routing method, D8. In fact, there are several more complicated, and often superior, methods for routing flow over a surface. Whitebox GAT offers several such methods in addition to D8, including the stochastic Rho8 method, FD8 (or multiple-flow direction method), and the popular D-infinity algorithm. The choice of which algorithm to use can be quite difficult for users that do not have experience with these various flow-routing techniques. Some methods are more suited to certain applications. For example, applications of flow-routing that involve extracting streams that are used in stream network analysis (i.e. the analysis of the topological and geometric characteristics of the stream network) or watershed (drainage basin) extraction will require a single-flow-direction (SFD) routing algorithm such as D8. By comparison modelling the redistribution of water, sediment, contaminants, and nutrients on hillslopes (i.e. the non-channelized part of watersheds) requires a routing algorithm that allows for dispersion of flow, such as FD8 or D-infinity. Use the D8 Flow Pointer tool (within the Flow Pointer toolbox, itself contained within the Hydrological Tools toolbox; alternatively select FlowPointerD8 from the Tool Quick Launch) to extract a flow-pointer raster grid from 'DEM filled'. Call the output raster 'D8 pointer'. When the tool has completed, the output raster will be automatically displayed. It is a colourful image. Zoom in and pan around the image, taking a look at the detailed patterns and values. You should find only the values displayed Figure 2. Remove the image from the map after you are done. 4.0 Creating the Flow-Accumulation Grid Once you have determined how each grid cell in a DEM is connected to its neighbours, it is possible to use this pointer information to calculate the number of grid cells that are connected to each cell in an upslope (catchment area) and downslope (dispersal area) direction. This is known as a flowaccumulation operation. These data describe the spatial pattern of upslope (or downslope) area draining to each pixel in a DEM. Measures of catchment area are often used for stream network extraction and

8 8 other terrain indices. There are three measures of catchment area, each of which can be specified as output from all of Whitebox GAT's flow-accumulation tools. These output formats include: 1. Specific catchment area (SCA): the TCA divided by the cell size or grid resolution; 2. Total catchment area (TCA): the number of upslope grid cells multiplied by the cell area; 3. Number of upslope grid cells: the number of cells draining to each grid cell. SCA characterizes the amount of flow across a unit length of contour (grid cell length) and is less affected by the grid resolution of the DEM than the other output types. Use the D8 and Rho8 Flow Accumulation tool to map the pattern of SCA from 'DEM filled'. Call the output raster 'D8 accum' and do not log-transform the output. This is a transformation that is often performed to better visualize the contributing area distribution. Because contributing areas tend to be very high along valley bottoms and relatively low on hillslopes, when a flow-accumulation image is displayed, the distribution of values on hillslopes tends to be 'washed out' because the palette is stretched out to represent the highest values. Log-transformation provides a means of compensating for this phenomenon. Importantly, however, log-transformed flow-accumulation grids must not be used to estimate other secondary terrain indices, such as the wetness index, or relative stream power index. A better alternative to log-transformation of flow-accumulation grid for visualization is to increase the Palette Non-linearity value under the Layer Properties tab. When the tool has completed and the image has been displayed, increase the Palette Non-linearity to 5.0, then zoom in and explore the spatial pattern of SCA in the study site. Notice that some grid cells, which are coincident with larger streams, have extremely high SCA values, while many more grid cells have much more modest values. This is the basis for automated stream network extraction from DEMs. Do not remove this layer from the active map when you have finished exploring the image. 5.0 Extracting the Stream Network There are several ways to extract a stream network from a DEM but the simplest method is to apply a threshold to the SCA data layer. Imagine for a moment that it is raining over a landscape and that as the

9 9 precipitation hits the ground it travel overland based on our derived flow network. Locations with higher SCA values will have larger catchment areas, will capture more flow, and therefore, will have higher discharges. At some point downslope of the catchment divide the discharge will be high enough to cause surface erosion. Diffusive processes, like mass wasting and surface wash, tend to fill these incised areas back in. However, at some point the erosion will be so great that the incisive processes outweigh the effects of mass wasting and a stable channel head occurs over the long term. This is implies that there is a constant critical support area for channels that mark the extent of the stream network. Let s see how this works. Open the Extract Streams tool in the Stream Network Analysis toolbox. Picking an appropriate value for the SCA threshold can be a difficult and highly subjective task. It requires that you preview the SCA layer and make a judgement about the extent of the stream network. This may be a trial and error process and will be different for every DEM. It is also best when the process is guided by knowledge of the existing stream network from either map or field data. For now, set the Channelization Threshold to and call the output raster 'Streams'. You will need to zoom into the map to see the stream network raster properly. At smaller scales (i.e. greater detail) it should be displayed as a single-grid cell wide red dendritic line network overlaying the flow-accumulation image, which shows through transparently because of the NoData valued background assigned to the 'Streams' raster. You may notice that in places there are what appear to be significant drainage features in the flow-accumulation images but that the streams image does not extend far enough. The extent of the extracted stream network (i.e. the location of the apparent channel heads) has, in this case, been determined entirely based on an SCA threshold. If we had selected a lower channelization SCA threshold the extracted stream network would have been more extensive, extending further into the headwaters. If the threshold were set higher, the network would have been less extensive, including only the largest of the streams. Again, selecting an appropriate threshold is a very challenging task and will depend on the region and the characteristics of the DEM, including its grid resolution. In many landscapes, channel head locations are better predicted by a threshold in a combined function of SCA and local slope gradient. For our purposes, we will assume that the extracted network is satisfactory at representing the actual network in the study area.

10 Stream Network Analysis Close any open maps and reopen the original 'Tutorial Map' that was opened at the beginning of this tutorial. The Stream Network Analysis toolbox contains a number of tools for analyzing raster stream networks such as the one extracted in the previous section. For example, each link in a stream network can be assigned the Horton-Strahler stream order, which is used to define the size of stream tributaries based on a hierarchy. The stream order of headwater links is one. When two links of the same order meet at a confluence, the downstream link's stream order is incremented by one. When two links of unequal stream order meet, the downstream link's stream order is the same as the larger of the tributaries. In fact, there are many methods for assigning a topological hierarchy to a stream network. In addition to the Horton-Strahler stream order, Whitebox GAT offers Shreve stream magnitude as a means of quantifying stream link relative size. Stream magnitude is simply the number of headwater stream links (magnitude one) upstream of each link in the network. Open the Horton-Strahler Stream Order tool from within the Stream Network Analysis toolbox. Specify 'Streams' as the Input Streams Raster File, 'D8 pointer' as the Input D8 Flow Pointer Raster File. Many of the stream network analysis tools require these same two inputs. The D8 flow-pointer raster is used by the algorithms to traverse each link in the stream network. Using these data, it is possible to move either upstream or downstream from any grid cell. Name the output raster 'Stream order'. The resulting raster should be displayed transparently overlaying the hillshaded DEM. Notice how each link in the network has been assigned a value that represents its Horton-Strahler stream order, with headwater stream each assigned an order of 1 and the highest order stream in the study area assigned an order of 6 (in the south-west area). In addition to hierarchical ordering, Whitebox GAT can be used to identify the main channel stem; assign each link in the network a unique indentifier; map channel heads, bifurfactions, and interior/exterior links; and estimate the length and slope of each stream link. Using the Extract Statistics tool within the Statistical Analysis toolbox, it is possible to extract even more information about each link in the stream network. For example, if a land-cover raster were available, one could determine what type of land-cover each stream link runs through by specifying the land-cover raster as the Data Image and the stream link identifier raster as the Feature Definition Raster. Using this same technique, one could easily determine the elevation drop associated with each link (i.e. the maximum minus the minimum elevation). Stream network analysis provides a powerful tool for examining a

11 11 catchment system. 7.0 Extracting Watersheds Watersheds are defined here as the set of grid cells that are connected to a special grid cell, known as an outlet cell or pour point, by an overland flow-path defined by the D8 drainage network. When the point of interest is along a major river, these features are often referred to as drainage basins, and when the outlet is in a less prominent area, we frequently refer to these watersheds as catchments, which tend to be much smaller, though this is an informal and ill-defined distinction. Automated watershed extraction based on DEM-derived flow-pointer grids is a very common application of GIS and is used in many areas of research and management. The major challenge in watershed mapping is in how you define your outlet point(s). There are two general cases that arise. First, it may be the case that you have specific sites for which you need to extract the drainage area, i.e. the watershed. You may have positioned hydrometric stations where you are measuring some aspect of water or sediment quality and/or quantity and now you need to extract the watershed areas of these sites to relate characteristics of these basins (predictors) to the measured hydrological output. This is a fairly common scenario. A second case arises when a researcher, or other individual, needs to carve the landscape up into hydrologically meaningful units, such that the exact position of the outlet points is not as important as the nature of the resulting basins. For example, frequently it is the case that we want to find each of the sub-basins draining to each of the links in the stream network. In this case, the outlets are effectively determined by the geometry of the stream network, i.e. the location of the network confluences. In other scenarios, the number and/or size of the watersheds is of much more significance, in which case, basin outlets must be located in positions to ensure a collection of a certain sized catchment. Whitebox GAT has tools to help with each of these scenarios, contained within the Watershed Tools toolbox, itself contained within the Hydrological Tools toolbox. Let's examine the first scenario, a situation when the researcher has specific sites for which they must identify the watersheds. There are two approaches to handling this problem both of which will ultimately use the Watershed tool. If you open this tool, you will find that it requires two inputs: 1) a D8 flow pointer grid, derived from a hydrologically corrected DEM, and 2) a pour-point raster. The D8 flow-pointer is used to traverse each of the possible surface flowpaths within the landscape contained

12 12 within the DEM; we have already described the process for obtaining this raster grid. The pour-point grid is a raster in which each of the outlet points (individual grid cells or contiguous groups of cells) have been assigned unique non-zero valued positive identifiers, whilst background, non-outlet grid cells are assigned either zeros or NoData values. There are two main ways in which you could create a pour-point raster. First, if you have GPS co-ordinates for the stations, you could use the Convert X,Y,Z Textfile to Raster tool in the Conversion Tools toolbox (XYZTextToRaster from the Tool Quick Launch) to create a new raster into which the pour points will be automatically positioned. There is an important issue here. The position of a point along the stream in the actual landscape, as described by a GPS-measured point, will not necessarily lie upon the 'digital' stream in the flow-pointer grid. If the measured point falls off the digital stream by even one grid cell, it will have an anomalously small watershed. As such, it is critical that these points be moved onto the digital stream network prior to running the watershed tool. One of the best ways to do this is to use the Jenson's Snap Pour Points tool, which moves each pour point in a pour-point raster to the nearest stream grid cell in a stream raster. If the pour point is already coincident with a stream cell, it will not be altered. This is a far superior method than the Snap Pour Points tool, which moves each grid cell to the site of highest flowaccumulation. This tool can actually be quite damaging to your dataset and has only been provided to be compatible with ArcGIS, which implements this rather dreadful tool (for a fuller comparison of these two tools see Lindsay, Rothwell, and Davies, 2008, Water Resources Research). Notice that this method of creating a pour-point raster assumes that your flow-point raster (and therefore DEM) use the same co-ordinate system as the GPS-measured points. An alternative to importing text GPS-measured X,Y,Z coordinates is to directly digitize pour-points into a blank raster. Add 'D8 accum' to the active map and change the Palette Non-linearity on the Layer Properties tab to 5.0. Open the Create Blank Outlet Raster tool from the Watershed toolbox (or select CreateBlankOutletRaster from the Tool Quick Launch). Specify the 'D8 pointer' as the base raster and call the output raster 'Pour points'. The image will be automatically displayed but because it is a grid that is completely filled with NoData values, it will be displayed transparently over the flowaccumulation raster image. Ensure that 'Pour points' is selected as the active layer and select the Modify Pixel Values tool in the Whitebox toolbar (Figure 3). Check the Save Changes checkbox to ensure that any modifications that are made to the raster grid are saved to file. Zoom very closely into each of the tributaries identified in Figure 4. It may be necessary to zoom into each of the tributary and confluence to the point where you can see individual pixels in the grid (Figure 5).

13 13 Figure 3. The use of the Modify Pixel Values tool to change individual pixel values. Figure 4. Three tributaries for which outlets will be digitized.

14 14 Figure 5. Assigning two outlet values to tributaries. When you have identified a grid cell to serve as a pour point, assign it a new value in the Modify Pixel Values grid (the pixel that has a cross-hair drawn over-top corresponds with the middle cell in the Modify Pixel Values grid). Assign each pour point a unique value from 1-3. Each time you modify a value, be sure to press the Update Map Display. The pixel should be re-coloured in the image. If it is not exactly overlaying a value of high SCA, i.e. It is not coincident with the digital stream network, move the pour point such that it is coincident. When you are satisfied with the pour-point raster, run the Watershed tool, calling the output raster 'Watersheds'. The image should look something like Figure 6, depending on the exact positioning on the pour points. Notice that each of the watersheds are contained completely within the raster grid, i.e. none of the watersheds intersect the edge of the grid. In the second scenario for watershed extraction, the location of pour points is determined by some other factor. For example, pour points can be located on the furthest downstream cell of each link within the stream network. This effectively finds the sub-basins for the network. Close the active map. Use the Sub-basins tool to extract the sub-basins from the 'Streams' raster, calling the output raster 'Subbasins'. The pour-point raster is calculated internally and is not saved. The resulting sub-basin raster is a very colourful map containing numerous irregular-shaped polygons. Overlay 'Streams' and zoom closely into the map. Notice the relation between the stream network and each of the sub-basins. Each subbasins contains exactly one link and new sub-basins start with each confluence in the network.

15 15 Figure 6. The watersheds for each of the three digitized pour points. The sub-basins that are derived from a less extensive stream network are comparably larger and vice versa. Within any group of sub-basins there is typically a wide range of individual sub-basin sizes. In particular, the sub-basins of interior stream links are on average far smaller than the sub-basins of exterior links. Many may be only a few pixels in size. In some instances, it is important to divide the landscape into a set of nearly equally sized units of hydrologically significance. This can be achieved using the Isobasin tool. The user can specify a the desired basin size, and the tool's algorithm will locate the pour points in optimal locations to ensure the greatest coverage of basins with areas as similar to the specified size as possible. Notice that, unlike sub-basins, the location of the pour points (i.e. the outlets of each of the isobasins) are not at all linked to the extent of the stream network. Hillslopes are similar to sub-basins except that they are more finely divided. There is one hillslope that drains to each side of a stream channel, and a third hillslope that drains to the channel head. Certain hydrological modelling applications require partitioning the landscape based on a hillslope scheme. Similar to sub-basins, the size and distribution of hillslopes is entirely dependent on the extent of the extracted stream network.

Whitebox Geospatial Analysis Tools Tutorial Series. Tutorial 1: Using Whitebox GAT

Whitebox Geospatial Analysis Tools Tutorial Series. Tutorial 1: Using Whitebox GAT 1 Whitebox Geospatial Analysis Tools Tutorial Series Tutorial 1: Using Whitebox GAT 2 Tutorial version 1.0, March, 2010 Written by John Lindsay, Whitebox Geospatial Analysis Tools Project Lead Developer,

More information

A Method Using ArcMap to Create a Hydrologically conditioned Digital Elevation Model

A Method Using ArcMap to Create a Hydrologically conditioned Digital Elevation Model A Method Using ArcMap to Create a Hydrologically conditioned Digital Elevation Model High resolution topography derived from LiDAR data is becoming more readily available. This new data source of topography

More information

Impact of water harvesting dam on the Wadi s morphology using digital elevation model Study case: Wadi Al-kanger, Sudan

Impact of water harvesting dam on the Wadi s morphology using digital elevation model Study case: Wadi Al-kanger, Sudan Impact of water harvesting dam on the Wadi s morphology using digital elevation model Study case: Wadi Al-kanger, Sudan H. S. M. Hilmi 1, M.Y. Mohamed 2, E. S. Ganawa 3 1 Faculty of agriculture, Alzaiem

More information

A HYDROLOGIC NETWORK SUPPORTING SPATIALLY REFERENCED REGRESSION MODELING IN THE CHESAPEAKE BAY WATERSHED

A HYDROLOGIC NETWORK SUPPORTING SPATIALLY REFERENCED REGRESSION MODELING IN THE CHESAPEAKE BAY WATERSHED A HYDROLOGIC NETWORK SUPPORTING SPATIALLY REFERENCED REGRESSION MODELING IN THE CHESAPEAKE BAY WATERSHED JOHN W. BRAKEBILL 1* AND STEPHEN D. PRESTON 2 1 U.S. Geological Survey, Baltimore, MD, USA; 2 U.S.

More information

How To Hydrologically Condition A Digital Dam

How To Hydrologically Condition A Digital Dam Program: Funding: Conservation Applications of LiDAR Data http://tsp.umn.edu/lidar Environment and Natural Resources Trust Fund Module: Instructor: Hydrologic Applications Sean Vaughn, DNR GIS Hydrologist

More information

Spatial Analyst Tutorial

Spatial Analyst Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents About the ArcGIS Spatial Analyst Tutorial......................... 3 Exercise 1: Preparing for analysis............................ 5 Exercise

More information

CSDMS TauDEM Clinic "Hands On" Exercise

CSDMS TauDEM Clinic Hands On Exercise CSDMS TauDEM Clinic "Hands On" Exercise David Tarboton, dtarb@usu.edu Utah State University Goal Be able to use TauDEM tools to derive hydrologically useful information from Digital Elevation Models (DEMs)

More information

Data source, type, and file naming convention

Data source, type, and file naming convention Exercise 1: Basic visualization of LiDAR Digital Elevation Models using ArcGIS Introduction This exercise covers activities associated with basic visualization of LiDAR Digital Elevation Models using ArcGIS.

More information

Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored.

Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored. In this lesson you will create a Digital Elevation Model (DEM). A DEM is a gridded array of elevations. In its raw form it is an ASCII, or text, file. First, you will interpolate elevations on a topographic

More information

Watershed Delineation

Watershed Delineation ooooo Appendix D: Watershed Delineation Department of Environmental Protection Stream Survey Manual 113 Appendix D: Watershed Delineation Imagine a watershed as an enormous bowl. As water falls onto the

More information

Selection of Drainage Network Using Raster GIS A Case Study

Selection of Drainage Network Using Raster GIS A Case Study International Journal of Engineering Science Invention ISSN (Online): 2319 6734, ISSN (Print): 2319 6726 Volume 2 Issue 8 ǁ August. 2013 ǁ PP.35-40 Selection of Drainage Network Using Raster GIS A Case

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

Appendix C - Risk Assessment: Technical Details. Appendix C - Risk Assessment: Technical Details

Appendix C - Risk Assessment: Technical Details. Appendix C - Risk Assessment: Technical Details Appendix C - Risk Assessment: Technical Details Page C1 C1 Surface Water Modelling 1. Introduction 1.1 BACKGROUND URS Scott Wilson has constructed 13 TUFLOW hydraulic models across the London Boroughs

More information

Hydrologic Modeling using HEC-HMS

Hydrologic Modeling using HEC-HMS Hydrologic Modeling using HEC-HMS Prepared by Venkatesh Merwade School of Civil Engineering, Purdue University vmerwade@purdue.edu April 2012 Introduction The intent of this exercise is to introduce you

More information

Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption

Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption Name: Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption Learning Objectives: Assigned: May 30, 2012 Due: June 1, 2012 @ 9 AM 1. Learn

More information

Raster to Vector Conversion for Overlay Analysis

Raster to Vector Conversion for Overlay Analysis Raster to Vector Conversion for Overlay Analysis In some cases, it may be necessary to perform vector-based analyses on a raster data set, or vice versa. The types of analyses that can be performed on

More information

HydroBASINS. Global watershed boundaries and sub-basin delineations derived from HydroSHEDS data at 15 second resolution

HydroBASINS. Global watershed boundaries and sub-basin delineations derived from HydroSHEDS data at 15 second resolution HydroBASINS Global watershed boundaries and sub-basin delineations derived from HydroSHEDS data at 15 second resolution Technical Documentation Version 1.c (with and without inserted lakes) prepared by

More information

Guidance for Flood Risk Analysis and Mapping. Changes Since Last FIRM

Guidance for Flood Risk Analysis and Mapping. Changes Since Last FIRM Guidance for Flood Risk Analysis and Mapping Changes Since Last FIRM May 2014 This guidance document supports effective and efficient implementation of flood risk analysis and mapping standards codified

More information

Fort Dodge Stormwater Master Planning. Prepared By: Ralph C. Stark, Jr., P.E., C.F.M. Joel N. Krause, P.E., C.F.M.

Fort Dodge Stormwater Master Planning. Prepared By: Ralph C. Stark, Jr., P.E., C.F.M. Joel N. Krause, P.E., C.F.M. Fort Dodge Stormwater Master Planning Prepared By: Ralph C. Stark, Jr., P.E., C.F.M. Joel N. Krause, P.E., C.F.M. Project Location Project Background Flooding History Localized flooding and storm sewer

More information

Modeling Fire Hazard By Monica Pratt, ArcUser Editor

Modeling Fire Hazard By Monica Pratt, ArcUser Editor By Monica Pratt, ArcUser Editor Spatial modeling technology is growing like wildfire within the emergency management community. In areas of the United States where the population has expanded to abut natural

More information

Raster: The Other GIS Data

Raster: The Other GIS Data 04-Raster_Tutorial_Arcgis_93.Doc Page 1 of 11 Raster: The Other GIS Data Objectives Understand the raster format and how it is used to model continuous geographic phenomena Understand how projections &

More information

HYDROLOGY OF THE TRANSBOUNDARY DRIN RIVER BASIN

HYDROLOGY OF THE TRANSBOUNDARY DRIN RIVER BASIN University of Texas at Austin GIS in Water Resources Instructor: Dr. David Maidment HYDROLOGY OF THE TRANSBOUNDARY DRIN RIVER BASIN Wikipedia Elisabeta Poci December, 2011 1 Table of Contents: 1. Introduction

More information

Stream-Network Navigation in the U.S. Geological Survey StreamStats Web Application

Stream-Network Navigation in the U.S. Geological Survey StreamStats Web Application 2009 International Conference on Advanced Geographic Information Systems & Web Services Stream-Network Navigation in the U.S. Geological Survey StreamStats Web Application Kernell G. Ries III, Peter A.

More information

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES A TUTORIAL FROM SPATIAL AND NUMERIC DATA SERVICES NICOLE SCHOLTZ AND GEOFF IVERSON Overview... 2 A. Get a Digital Elevation Model (DEM)... 3 B. Open ArcMap,

More information

GIS Data in ArcGIS. Pay Attention to Data!!!

GIS Data in ArcGIS. Pay Attention to Data!!! GIS Data in ArcGIS Pay Attention to Data!!! 1 GIS Data Models Vector Points, lines, polygons, multi-part, multi-patch Composite & secondary features Regions, dynamic segmentation (routes) Raster Grids,

More information

FREE GIS SOFTWARE AND THEİR USAGE İN THE RİVER BASİN MANAGEMENT

FREE GIS SOFTWARE AND THEİR USAGE İN THE RİVER BASİN MANAGEMENT FREE GIS SOFTWARE AND THEİR USAGE İN THE RİVER BASİN MANAGEMENT Prof.Dr. Kamil ŞENGÖNÜL University of Istanbul,Faculty of Forestry,Department of Watershed Management, 34473, Bahçeköy,İSTANBUL, e-mail:

More information

GEOENGINE MSc in Geomatics Engineering (Master Thesis) Anamelechi, Falasy Ebere

GEOENGINE MSc in Geomatics Engineering (Master Thesis) Anamelechi, Falasy Ebere Master s Thesis: ANAMELECHI, FALASY EBERE Analysis of a Raster DEM Creation for a Farm Management Information System based on GNSS and Total Station Coordinates Duration of the Thesis: 6 Months Completion

More information

Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9

Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9 Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9 1 TABLE OF CONTENTS INTRODUCTION...3 WORKING WITH DIGITAL TERRAIN MODEL (DTM) DATA FROM NRVIS, CITY OF KITCHENER, AND CITY OF

More information

Abaya-Chamo Lakes Physical and Water Resources Characteristics, including Scenarios and Impacts

Abaya-Chamo Lakes Physical and Water Resources Characteristics, including Scenarios and Impacts LARS 2007 Catchment and Lake Research Abaya-Chamo Lakes Physical and Water Resources Characteristics, including Scenarios and Impacts Seleshi Bekele Awulachew International Water Management Institute Introduction

More information

MIKE 21 FLOW MODEL HINTS AND RECOMMENDATIONS IN APPLICATIONS WITH SIGNIFICANT FLOODING AND DRYING

MIKE 21 FLOW MODEL HINTS AND RECOMMENDATIONS IN APPLICATIONS WITH SIGNIFICANT FLOODING AND DRYING 1 MIKE 21 FLOW MODEL HINTS AND RECOMMENDATIONS IN APPLICATIONS WITH SIGNIFICANT FLOODING AND DRYING This note is intended as a general guideline to setting up a standard MIKE 21 model for applications

More information

Files Used in this Tutorial

Files Used in this Tutorial Generate Point Clouds Tutorial This tutorial shows how to generate point clouds from IKONOS satellite stereo imagery. You will view the point clouds in the ENVI LiDAR Viewer. The estimated time to complete

More information

Using Google Earth for Environmental Science Research

Using Google Earth for Environmental Science Research Using Google Earth for Environmental Science Research This document is up-to-date as of August 2013. If you have any questions or additions to this material please email dan.friess@nus.edu.sg. Note: this

More information

Web-based GIS Application of the WEPP Model

Web-based GIS Application of the WEPP Model Web-based GIS Application of the WEPP Model Dennis C. Flanagan Research Agricultural Engineer USDA - Agricultural Research Service National Soil Erosion Research Laboratory West Lafayette, Indiana, USA

More information

Practical, Easy-to-Use, Free GIS and Remote Sensing Tools for Resource Management

Practical, Easy-to-Use, Free GIS and Remote Sensing Tools for Resource Management Practical, Easy-to-Use, Free GIS and Remote Sensing Tools for Resource Management Andrew Lister Research Forester 11 Campus Blvd, Ste. 200 Newtown Square, PA 19073 alister@fs.fed.us Abstract: Geographic

More information

Page 1 of 7 (document version 1)

Page 1 of 7 (document version 1) Lecture 2 - Data exploration This lecture will cover: Attribute queries Spatial queries Basic spatial analyses: Buffering Voronoi tessellation Cost paths / surfaces Viewsheds Hydrological modelling Autocorrelation

More information

Composite Surfaces Tutorial

Composite Surfaces Tutorial Composite Surfaces Tutorial 4-1 Composite Surfaces Tutorial This tutorial will use the same model as the Materials & Loading Tutorial (with some modifications), to demonstrate how to perform a circular

More information

Getting Started with the ArcGIS Predictive Analysis Add-In

Getting Started with the ArcGIS Predictive Analysis Add-In Getting Started with the ArcGIS Predictive Analysis Add-In Table of Contents ArcGIS Predictive Analysis Add-In....................................... 3 Getting Started 4..............................................

More information

Under GIS Data select Hydrography This will show all of the state-wide options for hydrography data. For this project, we want the seventh entry in

Under GIS Data select Hydrography This will show all of the state-wide options for hydrography data. For this project, we want the seventh entry in Introductory Exercises for GIS Using ArcMap & ArcCatalog GIS Cyberinfrastructure Module EEB 5894, section 10 Please refer to the ESRI online GIS Dictionary for additional details on any of the terms in

More information

Introduction to GIS (Basics, Data, Analysis) & Case Studies. 13 th May 2004. Content. What is GIS?

Introduction to GIS (Basics, Data, Analysis) & Case Studies. 13 th May 2004. Content. What is GIS? Introduction to GIS (Basics, Data, Analysis) & Case Studies 13 th May 2004 Content Introduction to GIS Data concepts Data input Analysis Applications selected examples What is GIS? Geographic Information

More information

ArcGIS. Image Server tutorial

ArcGIS. Image Server tutorial ArcGIS 9 ArcGIS Image Server tutorial Copyright 2006, 2007, and 2008 Zanja Technologies, Inc. All rights reserved. The information contained in this work is the property of Zanja Technologies, Inc., under

More information

STARS: SPATIAL TOOLS FOR THE ANALYSIS OF RIVER

STARS: SPATIAL TOOLS FOR THE ANALYSIS OF RIVER STARS: SPATIAL TOOLS FOR THE ANALYSIS OF RIVER SYSTEMS VERSION 2.0.0 - A TUTORIAL Dr. Erin E. Peterson 22 April 2015 [Commercial in Confidence (delete if not required)] Enquiries should be addressed to:

More information

DEVELOPMENT OF WEB-BASED GIS INTERFACES FOR APPLICATION OF THE WEPP MODEL

DEVELOPMENT OF WEB-BASED GIS INTERFACES FOR APPLICATION OF THE WEPP MODEL DEVELOPMENT OF WEB-BASED GIS INTERFACES FOR APPLICATION OF THE WEPP MODEL D.C. Flanagan A, J.R. Frankenberger A, C.S. Renschler B and B.A. Engel C A National Soil Erosion Research Laboratory, USDA-ARS,

More information

Lab 6: Distance and Density

Lab 6: Distance and Density Lab 6: Distance and Density Exercise 1: Air Ambulance study The dispatch managers of local hospitals providing air ambulance service are working together with local schools and colleges to conduct a preliminary

More information

Notable near-global DEMs include

Notable near-global DEMs include Visualisation Developing a very high resolution DEM of South Africa by Adriaan van Niekerk, Stellenbosch University DEMs are used in many applications, including hydrology [1, 2], terrain analysis [3],

More information

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online...

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online... Table of Contents ArcGIS online Introduction... 2 Module 1: How to create a basic map on ArcGIS online... 3 Creating a public account with ArcGIS online... 3 Opening a Map, Adding a Basemap and then Saving

More information

Applying a circular load. Immediate and consolidation settlement. Deformed contours. Query points and query lines. Graph query.

Applying a circular load. Immediate and consolidation settlement. Deformed contours. Query points and query lines. Graph query. Quick Start Tutorial 1-1 Quick Start Tutorial This quick start tutorial will cover some of the basic features of Settle3D. A circular load is applied to a single soil layer and settlements are examined.

More information

ERCB/AGS Information Series 136. Digital Mapping and 3D Visualization/ Modelling of Subsurface Geology Using ArcGIS 9.2 and Well Log Data

ERCB/AGS Information Series 136. Digital Mapping and 3D Visualization/ Modelling of Subsurface Geology Using ArcGIS 9.2 and Well Log Data ERCB/AGS Information Series 136 Digital Mapping and 3D Visualization/ Modelling of Subsurface Geology Using ArcGIS 9.2 and Well Log Data ERCB/AGS Information Series 136 Digital Mapping and 3D Visualization/Modelling

More information

What is GIS? Geographic Information Systems. Introduction to ArcGIS. GIS Maps Contain Layers. What Can You Do With GIS? Layers Can Contain Features

What is GIS? Geographic Information Systems. Introduction to ArcGIS. GIS Maps Contain Layers. What Can You Do With GIS? Layers Can Contain Features What is GIS? Geographic Information Systems Introduction to ArcGIS A database system in which the organizing principle is explicitly SPATIAL For CPSC 178 Visualization: Data, Pixels, and Ideas. What Can

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Introduction Basic Lesson 2: Using ArcGIS Explorer to Analyze the Connection between Topography and Rainfall This lesson introduces Geographical

More information

Geoprocessing Tools for Surface and Basement Flooding Analysis in SWMM

Geoprocessing Tools for Surface and Basement Flooding Analysis in SWMM 3 Geoprocessing Tools for Surface and Basement Flooding Analysis in SWMM Eric White, James Knighton, Gary Martens, Matthew Plourde and Rajesh Rajan A geoprocessing routine was used for the development

More information

Lesson 15 - Fill Cells Plugin

Lesson 15 - Fill Cells Plugin 15.1 Lesson 15 - Fill Cells Plugin This lesson presents the functionalities of the Fill Cells plugin. Fill Cells plugin allows the calculation of attribute values of tables associated with cell type layers.

More information

Working with the Raster Calculator

Working with the Raster Calculator Working with the Raster Calculator The Raster Calculator provides you a powerful tool for performing multiple tasks. You can perform mathematical calculations using operators and functions, set up selection

More information

How To Assess An Area For Erosion

How To Assess An Area For Erosion SKY BASIN (UPPER CA 1 WATERSHED) EROSION ASSESSMENT Prepared by Kevin Drake, CPESC Integrated Environmental Restoration Services, Inc. August 2014 COMMON GROUND UNCOMMON SOLUTIONS P.O. BOX 7559 2780 LAKE

More information

Version 3.0, April 16, 2012, updated for ArcGIS 10.0 Produced by the Geographic Information Network of Alaska http://www.gina.alaska.

Version 3.0, April 16, 2012, updated for ArcGIS 10.0 Produced by the Geographic Information Network of Alaska http://www.gina.alaska. Using the AlaskaMapped Web Services in ESRI ArcGIS Version 3.0, April 16, 2012, updated for ArcGIS 10.0 Produced by the Geographic Information Network of Alaska http://www.gina.alaska.edu AlaskaMapped

More information

SWAMP DATA MANAGEMENT PLAN

SWAMP DATA MANAGEMENT PLAN SWAMP DATA MANAGEMENT PLAN Station Template Surface Water Ambient Monitoring Program August 27, 2013 TABLE OF CONTENTS C. Data Entry...3 D. Field Data Entry...3 1. PROGRAMS NEEDED FOR SWAMP DATA ENTRY

More information

American-Eurasian Journal of Sustainable Agriculture

American-Eurasian Journal of Sustainable Agriculture Copyright 2015, American-Eurasian Network for Scientific Information publisher American-Eurasian Journal of Sustainable Agriculture ISSN: 1995-0748 JOURNAL home page: http://www.aensiweb.com/aejsa 2015

More information

The following is an overview of lessons included in the tutorial.

The following is an overview of lessons included in the tutorial. Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your

More information

Image Draping & navigation within Virtual GIS

Image Draping & navigation within Virtual GIS Image Draping & navigation within Virtual GIS Draping of Geo Corrected data such as aerial imagery or map data enables virtual 3D field tours to be conducted in an area of interest. This document covers

More information

A Workflow for Creating and Sharing Maps

A Workflow for Creating and Sharing Maps A Workflow for Creating and Sharing Maps By Keith Mann, Esri What You Will Need Item Source ArcGIS Online for Organizations subscription ArcGIS 10.1 for Desktop (Any license level) ArcGIS Spatial Analyst

More information

Introduction to GIS. http://libguides.mit.edu/gis

Introduction to GIS. http://libguides.mit.edu/gis Introduction to GIS http://libguides.mit.edu/gis 1 Overview What is GIS? Types of Data and Projections What can I do with GIS? Data Sources and Formats Software Data Management Tips 2 What is GIS? 3 Characteristics

More information

Figure 1.1 The Sandveld area and the Verlorenvlei Catchment - 2 -

Figure 1.1 The Sandveld area and the Verlorenvlei Catchment - 2 - Figure 1.1 The Sandveld area and the Verlorenvlei Catchment - 2 - Figure 1.2 Homogenous farming areas in the Verlorenvlei catchment - 3 - - 18 - CHAPTER 3: METHODS 3.1. STUDY AREA The study area, namely

More information

5. GIS, Cartography and Visualization of Glacier Terrain

5. GIS, Cartography and Visualization of Glacier Terrain 5. GIS, Cartography and Visualization of Glacier Terrain 5.1. Garhwal Himalayan Glaciers 5.1.1. Introduction GIS is the computer system for capturing, storing, analyzing and visualization of spatial and

More information

Ruissellement du Bassin Précipitation Abstractions Hydrogramme Flux de Base. Superposition Routage

Ruissellement du Bassin Précipitation Abstractions Hydrogramme Flux de Base. Superposition Routage HEC-1 Leçon 11 This lesson will focus on how WMS can be used to develop HEC-1 modeling parameters and not on the fundamental hydrologic principles simulated by HEC-1. 1 Vue D Emsemble Utilisés Couramment

More information

TUTORIAL - Locations & Mapping. Using the ESdat Environmental Database System. For use with ESDAT version 5

TUTORIAL - Locations & Mapping. Using the ESdat Environmental Database System. For use with ESDAT version 5 TUTORIAL - Locations & Mapping Using the ESdat Environmental Database System For use with ESDAT version 5 (version 5 software updates available from ) Function Tutorial - Locations and Mapping Table of

More information

A SEMI-AUTOMATED TOOL FOR REDUCING THE CREATION OF FALSE CLOSED DEPRESSIONS FROM A FILLED LIDAR-DERIVED DIGITAL ELEVATION MODEL

A SEMI-AUTOMATED TOOL FOR REDUCING THE CREATION OF FALSE CLOSED DEPRESSIONS FROM A FILLED LIDAR-DERIVED DIGITAL ELEVATION MODEL A SEMI-AUTOMATED TOOL FOR REDUCING THE CREATION OF FALSE CLOSED DEPRESSIONS FROM A FILLED LIDAR-DERIVED DIGITAL ELEVATION MODEL John Wall Department of Marine, Earth & Atmospheric Sciences, 2800 Faucette

More information

USGS StreamStats Web Application for Kentucky

USGS StreamStats Web Application for Kentucky USGS StreamStats Web Application for Kentucky Implementation of selected low- and mean-flow estimating equations Gary Martin, Hydrologist Project Chief U.S. Geological Survey, Kentucky Water Science Center

More information

06 - NATIONAL PLUVIAL FLOOD MAPPING FOR ALL IRELAND THE MODELLING APPROACH

06 - NATIONAL PLUVIAL FLOOD MAPPING FOR ALL IRELAND THE MODELLING APPROACH 06 - NATIONAL PLUVIAL FLOOD MAPPING FOR ALL IRELAND THE MODELLING APPROACH Richard Kellagher 1, Mike Panzeri 1, Julien L Homme 1, Yannick Cesses 1, Ben Gouldby 1 John Martin 2, Oliver Nicholson 2, Mark

More information

Applying GIS Analysis to Archaeological Research in Canada

Applying GIS Analysis to Archaeological Research in Canada Applying GIS Analysis to Archaeological Research in Canada T A L K B Y D R. K I S H A S U P E R N A N T P R E S E N T E D A T G E O A L B E R T A 2 0 1 3 S E P T E M B E R 2 3, 2 0 1 3 Overview Review

More information

ArcScan Tutorial. Copyright 1995-2010 Esri All rights reserved.

ArcScan Tutorial. Copyright 1995-2010 Esri All rights reserved. Copyright 1995-2010 Esri All rights reserved. Table of Contents Exercise 1: Interactive vectorization........................... 3 Exercise 2: Automatic vectorization........................... 12 Copyright

More information

Information Contents of High Resolution Satellite Images

Information Contents of High Resolution Satellite Images Information Contents of High Resolution Satellite Images H. Topan, G. Büyüksalih Zonguldak Karelmas University K. Jacobsen University of Hannover, Germany Keywords: satellite images, mapping, resolution,

More information

Finding GIS Data and Preparing it for Use

Finding GIS Data and Preparing it for Use Finding_Data_Tutorial.Doc Page 1 of 19 Getting Ready for the Tutorial Sign Up for the GIS-L Listserv Finding GIS Data and Preparing it for Use The Yale University GIS-L Listserv is an internal University

More information

How To Create A 3D Model Of The Phanerozoic Succession In Southern Manitoba

How To Create A 3D Model Of The Phanerozoic Succession In Southern Manitoba 3D GEOLOGICAL MAPPING IN MANITOBA MOVING FORWARD Greg Keller (greg.keller@gov.mb.ca), Gaywood Matile, Manitoba Geological Survey (RET), Canada Harvey Thorleifson, Minnesota Geological Survey, United States

More information

CITY UTILITIES DESIGN STANDARDS MANUAL

CITY UTILITIES DESIGN STANDARDS MANUAL CITY UTILITIES DESIGN STANDARDS MANUAL Book 2 (SW) SW9 June 2015 SW9.01 Purpose This Chapter provides information for the design of open channels for the conveyance of stormwater in the City of Fort Wayne.

More information

Stormwater Management Functional Servicing Report

Stormwater Management Functional Servicing Report Stormwater Management Functional Servicing Report Part of Lot 12, Concession 10 Township of Cavan Monaghan Ian Cameron Rural Subdivision Engage Project No. 14016 Engage Engineering Ltd. January 7, 2015

More information

How to georectify an image in ArcMap 10

How to georectify an image in ArcMap 10 How to georectify an image in ArcMap 10 The University Library has a large collection of historical aerial photos for some North Carolina Counties ( http://www.lib.unc.edu/reference/gis/usda/index.html

More information

Using the Spatial Database Engine to develop a FEMA friendly Database and Asset Management Tool José Maria Guzmán, PE February 2009 GAFM 4th Annual Technical Conference Columbus, GA Outline Typical Datasets

More information

Chapter 3 CULVERTS. Description. Importance to Maintenance & Water Quality. Culvert Profile

Chapter 3 CULVERTS. Description. Importance to Maintenance & Water Quality. Culvert Profile Chapter 3 CULVERTS Description A culvert is a closed conduit used to convey water from one area to another, usually from one side of a road to the other side. Importance to Maintenance & Water Quality

More information

Using Hydraflow Storm Sewers Extension with AutoCAD Civil 3D 2008: A Recommended Workflow

Using Hydraflow Storm Sewers Extension with AutoCAD Civil 3D 2008: A Recommended Workflow AutoCAD Civil 3D 2008 Using Hydraflow Storm Sewers Extension with AutoCAD Civil 3D 2008: A Recommended Workflow The ability to perform storm water hydrology and hydraulic (H&H) tasks is crucial to civil

More information

Downloading & Using Data from the STORET Warehouse: An Exercise

Downloading & Using Data from the STORET Warehouse: An Exercise Downloading & Using Data from the STORET Warehouse: An Exercise August 2012 This exercise addresses querying or searching for specific water resource data, and the respective methods used in collecting

More information

Creating Figure Ground Maps in ArcMap 10.x: Basic procedures to download, open, manipulate and print spatial data

Creating Figure Ground Maps in ArcMap 10.x: Basic procedures to download, open, manipulate and print spatial data Creating Figure Ground Maps in ArcMap 10.x: Basic procedures to download, open, manipulate and print spatial data These procedures outline: A. Retrieving Property Data B. Uncompressing the Downloaded Files

More information

Contents. The OWRB Floodplain Viewer. Creating Maps... 8. Helpful Tips... 10

Contents. The OWRB Floodplain Viewer. Creating Maps... 8. Helpful Tips... 10 Contents QUICK START GUIDE... 2-5 Add layers...9 Search for Layers...9 COMPREHENSIVE GUIDE... 6 Navigate the map...6 Locate specific places...6 Add layer from file...9 Add layer from web...9 Display pop-up

More information

Converting GIS Datasets into CAD Format

Converting GIS Datasets into CAD Format Ball State University Libraries GIS Research and Map Collection Converting GIS Datasets into CAD Format Author: Angela Gibson, 6/13/2014 Overview: One of the most common requests from students is for GIS

More information

The Hydrologic Cycle. precipitation evaporation condensation transpiration infiltration surface runoff transport groundwater water table.

The Hydrologic Cycle. precipitation evaporation condensation transpiration infiltration surface runoff transport groundwater water table. The Hydrologic Cycle Page 1 of 1 Name Directions: The hydrologic cycle consists of the processes that change and move water through the earth s system. Use the terms below to label the hydrologic cycle.

More information

The Spatiotemporal Visualization of Historical Earthquake Data in Yellowstone National Park Using ArcGIS

The Spatiotemporal Visualization of Historical Earthquake Data in Yellowstone National Park Using ArcGIS The Spatiotemporal Visualization of Historical Earthquake Data in Yellowstone National Park Using ArcGIS GIS and GPS Applications in Earth Science Paul Stevenson, pts453 December 2013 Problem Formulation

More information

Creating Slope-Enhanced Shaded-Relief Using Global Mapper

Creating Slope-Enhanced Shaded-Relief Using Global Mapper Creating Slope-Enhanced Shaded-Relief Using Global Mapper Kent D. Brown Utah Geological Survey Introduction The purpose of this document is to demonstrate that slope-enhanced hillshade, or shaded-relief

More information

Watershed Modeling System

Watershed Modeling System Watershed Modeling System WMS v8.0 MARICOPA COUNTY TUTORIALS TABLE OF CONTENTS 1 MARICOPA COUNTY: NFF AND HEC-1... 1-1 1.1 OBJECTIVES... 1-1 1.2 DELINEATING THE WATERSHED... 1-1 1.3 BUILDING THE NFF SIMULATION...

More information

First Steps. Setup, data import, visualization and basic terrain analysis. Volker Wichmann

First Steps. Setup, data import, visualization and basic terrain analysis. Volker Wichmann SAGA First Steps Setup, data import, visualization and basic terrain analysis Volker Wichmann SAGA Setup on Windows Download of SAGA 2.0.8 binaries (1) www.saga-gis.org (2) >> Downloads (@ SourceForge)

More information

Texas Wildfire Risk Assessment Portal (TxWRAP) User Manual. Texas A&M Forest Service

Texas Wildfire Risk Assessment Portal (TxWRAP) User Manual. Texas A&M Forest Service Texas Wildfire Risk Assessment Portal (TxWRAP) User Manual Texas A&M Forest Service October 2012 Table of Contents 1 ABOUT TXWRAP... 7 1.1 ACCESSING TXWRAP... 7 1.2 GETTING SUPPORT... 8 Documentation...

More information

Page 1 of 7 (document version 1)

Page 1 of 7 (document version 1) Lecture 1 - Introduction to GIS This lecture will cover: What GIS is What GIS does What GIS does not do GIS and archaeology Data structures: Vector Raster Mapping systems and projection GIS software packages:

More information

SCIENCE-BASED GIS SOLUTIONS. www.earthanalytic.com

SCIENCE-BASED GIS SOLUTIONS. www.earthanalytic.com SCIENCE-BASED GIS SOLUTIONS www.earthanalytic.com Pipeline Routing, Site Selection, Cost Estimation and Risk Management Tools for Energy SmartFootprint is an extension to ArcGIS designed to assist planning,

More information

International Symposium on Erosion and Landscape Evolution

International Symposium on Erosion and Landscape Evolution This is not a peer-reviewed article International Symposium on Erosion and Landscape Evolution CD-Rom Proceedings of the 18-21 September 2011 Conference (Hilton Anchorage, Anchorage Alaska) Publication

More information

AUTOMATED MAPPING OF LAND COMPONENTS FROM DIGITAL ELEVATION DATA

AUTOMATED MAPPING OF LAND COMPONENTS FROM DIGITAL ELEVATION DATA EARTH SURFACE PROCESSES AND LANDFORMS, VOL. 20, 13 1-1 37 (1995) AUTOMATED MAPPING OF LAND COMPONENTS FROM DIGITAL ELEVATION DATA J. R. DYMOND, R. C. DEROSE AND G. R. HARMSWORTH Manaaki Whenua - Landcare

More information

Introduction to ArcMap for Water Resources Data

Introduction to ArcMap for Water Resources Data Introduction to ArcMap for Water Resources Data Barbara Parmenter and Jack Melcher, revised: 9/15/2011 INTRODUCTION... 1 CHOOSING A HCDN STATION FOR WATERSHED MAPPING... 2 DOWNLOADING DATA FROM THE NATIONAL

More information

A GIS helps you answer questions and solve problems by looking at your data in a way that is quickly understood and easily shared.

A GIS helps you answer questions and solve problems by looking at your data in a way that is quickly understood and easily shared. A Geographic Information System (GIS) integrates hardware, software, and data for capturing, managing, analyzing, and displaying all forms of geographically referenced information. GIS allows us to view,

More information

Linking FLIPS to a GIS Shapefile

Linking FLIPS to a GIS Shapefile Linking FLIPS to a GIS Shapefile User s Guide Atterbury Consultants, Inc. 3800 SW Cedar Hills Blvd. Suite 145 Beaverton, Oregon 97005 503-646-5393 Phone 503-644-1683 Fax www.atterbury.com Table of Contents

More information

Topology and Topological Rules Geometric properties that are maintained in spatial databases

Topology and Topological Rules Geometric properties that are maintained in spatial databases Topology and Topological Rules Geometric properties that are maintained in spatial databases The definition of topology Topology is a term used around GIS that is sometimes confused with the term topography.

More information

INTRODUCTION TO ARCGIS SOFTWARE

INTRODUCTION TO ARCGIS SOFTWARE INTRODUCTION TO ARCGIS SOFTWARE I. History of Software Development a. Developer ESRI - Environmental Systems Research Institute, Inc., in 1969 as a privately held consulting firm that specialized in landuse

More information

Quality Assurance Reviews of Hydraulic Models Developed for the Central Valley Floodplain Evaluation and Delineation Program

Quality Assurance Reviews of Hydraulic Models Developed for the Central Valley Floodplain Evaluation and Delineation Program Quality Assurance Reviews of Hydraulic Models Developed for the Central Valley Floodplain Evaluation and Delineation Program Techniques Applied and Lessons Learned Seth Ahrens, P.E., CFM Selena Forman,

More information

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 1) Navigate to the C:/temp folder 2) Make a directory using your initials. 3) Use your web browser to navigate to www.library.yale.edu/mapcoll/ and

More information

Development and Comparison of Approaches for Automated Mapping of Stream Channel Networks

Development and Comparison of Approaches for Automated Mapping of Stream Channel Networks Development and Comparison of Approaches for Automated Mapping of Stream Channel Networks Reuben A. Heine,* Christopher L. Lant,* and Raja R. Sengupta** *Southern Illinois University Carbondale **McGill

More information