Raster Data Model & Analysis

Size: px
Start display at page:

Download "Raster Data Model & Analysis"

Transcription

1 Topics: 1. Understanding Raster Data 2. Adding and displaying raster data in ArcMap 3. Converting between floating-point raster and integer raster 4. Converting Vector data to Raster 5. Querying Raster data 6. Creating a Histogram 7. Raster classification 8. Mapping Distance 9. Creating an allocation map 10. Zonal Statistics 11. Performing a Map Query and Map calculation 1. Understanding a raster dataset A raster dataset, like a map, describes the features and characteristics of an area and their relative positions. A single raster typically represents a single theme. Multiple raster datasets should be produced to fully depict an area. The Raster Data Structure A raster dataset is made up of cells/pixels. Cells are arranged in rows and columns, an arrangement that produces a Cartesian matrix. The rows of the matrix are parallel to the x-axis of the Cartesian plane, and the columns to the y-axis. Each cell/pixel is a square that represents a specific portion of an area. All cells in a raster must be the same size. The cells in a raster dataset can be any size that you desire, but they should be small enough to accomplish detailed analysis. Each cell has a unique row and column address. All locations in a study site are covered by the matrix. Raster data is generally divided into two categories: Thematic data and Image data Thematic data: The values in thematic raster data represent some measured quantity or classification of a particular phenomena, such as elevation, pollution concentration, or population. Image data: The values of cells in an image represent reflected or emitted light or energy, such as that of a satellite image or scanned photograph. The Spatial Analyst tools are primarily intended for use on thematic raster data. Raster Data Type: The data type in raster is either Integer (Discrete data) or Floating point (Continuous data) Discrete data Categorical data, sometimes called discrete data, most often represent objects. These objects usually belong to a class, a category or a group. A categorical object has known and definable boundaries. UNBC 2017 ~ 1 ~

2 An integer value is normally associated with each cell in a categorical grid, which defines the group, class or category the cell belongs to. All integer raster include a table called a value attribute table (VAT). The VAT always contains at least two items: VALUE and COUNT. VALUE is the value assigned to the cell in the grid, and COUNT is the total number of cells in the grid that are assigned the value. Any additional items representing other attributes of the group, class or category can be added or related to the VAT. Continuous data Continuous data are usually represented by a grid with floating-point values (referred to as a floating-point grid). The value for each cell in the grid is based on a fixed point, such as sea level; a compass direction or the distance of each location from a phenomenon in a specified measurement system (such as the noise in decibels at various sites near an airport). Floating-point grids do not have a VAT. 2. Adding and displaying raster data in ArcMap Create a new folder raster under your geog300 folder Open a new map file and add dem.tif and features from L:\labs\geog300\unbc Most functions applied on raster analysis are provided by the Spatial Analyst extension. Before doing any work, make sure you have Spatial Analyst extension enabled. Click Customize->Extension on the top menu bar. Make sure the check box is checked beside Spatial Analyst and 3D Analyst. Click Close Raster working environment NOTE: whenever you work with raster data, you need to set the raster working environment. This is a very important step, otherwise it may cause some issues when generating raster dataset. Setting the raster analysis environment enables you to control the output directory for your results, the analysis extent, and the cell size. It also enables you to specify an analysis mask and a snapping extent if appropriate. The major environment includes: Workspace: Analysis extent: Analysis Mask: Cellsize: the output raster directory the output raster extent Analysis mask the cell size of output raster Click Geoprocessing->Environments from the top menu bar to open the Environment Setting Expand Workspace to set the workspace to K:\geog300\raster Click Processing Extent and select Same as dem.tif for the output extent Click Raster Analysis and set cell size Same as dem.tif from the dropdown list. This will result all output raster data have the same cell size as dem.tif. Click OK to close the window. Right-click on dem.tif and choose Proprieties. In the Symbology tab, change the color ramp to a colorful color pattern. Click Apply. Query the raster value with Identify tool You can use button to query the raster cell value. dem.tif is a digital elevation mode and each cell value represents the elevation at the location Click the button and click a place in display area (within dem.tif area), the Identify Results window pops up showing stretch value and pixel value. The stretch value is the color value assigned to a cell for display and the pixel value is the real value of a cell. In the Identify window, set dem.tif for Identify from. This will make sure you are querying dem.tif layer. The pixel value is the elevation value UNBC 2017 ~ 2 ~

3 Open the properties window of dem.tif. Under Symbololgy tab, click Classified in the Show box at left. Change the number of classes to 10 and click Apply. The dem.tif is displayed in classified mode. Query dem.tif with button again. You should see class value displayed. This is because the dem.tif is classified on display You can also use the map tips to display the elevation automatically whenever your mouse cursor is over a pixel. Right-click dem.tif and choose Properties. Click Display tab. Make the 'Show Map tips' is checked. Click OK. Now put your mouse cursor over a place in the display area of dem.tif, elevation value shows up. You can also examine the statistics information of a raster dataset. Right-click dem.tif and choose Properties->Source. Here you can find all information about this raster. 3. Converting between floating-point raster and integer raster Tabular queries are useful in some cases to extract information from a dataset. But tabular queries can be only performed on integer raster dataset. To take the advantage of tabular queries, conversion from floating-point values to integer values is needed to create a raster theme with a VAT table (Value Attribute Table). In ArcToolbox, click Spatial Analyst->Map Algebra->Raster Calculator The Raster Calculator window pops up. Here you can build map algebra expression to overlay rasters on cell based calculation. The left part of the window lists all raster layers available, the middle part is for numbers and operators and the right part is a list of functions that can be applied on raster calculation Double-click the function Int from the function list and then double click dem from the layers list. You should see an expression like the following: Int( dem.tif ) This function will convert the floating point (continuous data) dem.tif to an integer dem. Set the Output Raster to K:\geog300\raster\dem_int. The result will be saved as dem_int in your local folder. Click OK. As the integer raster has a VAT table associated, so the raster can be queried based on attributes. Open the attribute table of dem_int and examine the content. It should come with Value and Cont fields. The Value field indicates the elevation value and the Cont field provides the total number of cells with the value. Be aware that this conversion may incur a loss of information. Be very careful when converting floating-point to integer value, especially if your original values are between 0 and 1. You will lose most of your information. If your data represent values for which decimal places contain important information and you convert to integer values, you will lose that important information. Also building a VAT for an integer raster that has so many unique values is a slow process. Before converting a floating point raster to an integer raster, you should check the histogram of the raster to see if it is suitable to convert to integer data. Right-click dem_int and choose Properties. Click the Source tab, here you can find all the statistical information on this raster including cell size, rows, columns, max, min, mean and standard deviation values. UNBC 2017 ~ 3 ~

4 4. Converting Vector data to Raster Vector data can be converted to a raster dataset using the attributes. Remember that one raster dataset can only represent one type of information (theme: such as age, temperature, elevation, etc). Let's convert fcover to raster using fcover-id as the raster cell value. You can convert fcover using any attribute in the table as the raster cell value. The reason we choose fcover-id is that we can join the fcover attribute table to the raster VAT table after conversion so we can query the raster using the attributes from original fcover dataset. Add fcover from L:\labs\geog300\unbc In the ArcToolbox, click Conversion Tools->To Raster->Polygon to Raster. Input Features fcvoer Value Field fcover_id Output Raster K:\geog300\raster\fc_ras Click OK to run the tool. Turn off fcover in the table of content. The raster dataset fc_ras represents the fcover-id which is the polygon id from original fcover dataset. Right-click fc_ras and choose Open Attribute Table to examine the VAT table. Two data fields are created in the table: Value and Count. The Value data field stores the value from fcover-id (fcover) and the Count field tells you the total number of cells having that value. Now do the following conversions yourself and save the output in your local folder raster Convert fcover to raster (fc_sp1) using the primary species (SPEC_CD_1) Convert fcover to raster (fc_age) using the stand age (STAND_AGE) Convert fcover to raster (fc_ht) using the stand height (STAND_HEIG) 5. Query raster data based on attributes Now right-click dem_int and choose Open Attribute Table. Click the first dropdown button at upper left and choose Select by In the query builder window, build a query like the following. This query will select all the elevation cells greater or equal to 800. Click Apply. The selected cells are highlighted. Value >= 800 elevation >= 800 fc_ras classified based on fcover_id Now turn off dem.tif, dem _int. Turn on fc_ras to view the forest coverage. The cell value in fc_ras represents the fcover_id (polygon ID). The data type is integer. Change the Symbology of fc_ras. Open the Properties window. Click Symbology tab. Click Unique Values in the Show box. Choose a color ramp. Click Add all Value button to add values. Click Apply. You should see that the cells with the same color form up the polygon. UNBC 2017 ~ 4 ~

5 The values in Value field indicate the polygon ID (fcover_id) in the vector fcover and the values in Count Field tells you the total number of cells with the value in Value field. There is not much useful information that describes each polygon. We have the attribute table for fcover that can be joined to this VAT to bring in some valuable information. Remember how to join two tables together? Join the attribute table of fcover to fc_ras table using the join field Value in fc_ras and fcover_id in fcover Right-click on fc_ras and choose Open the attribute table. Examine the attributes in the table. All attributes from fcover are appended into the fc_ras VAT table. This table can now be used for query. In the attribute table of fc_ras, click the first dropdown button at upper left and choose Selection By Attributes. Build an attribute query expression to locate the areas with Spruce as the leading species. You may see a table name showing as prefix of the field for the joined table (fcover) fcover.spec_cd_1= S This will select all the cells with Spruce as leading species. The selected cells are highlighted in cyan color in both the table and the display window. 6. Creating a Histogram Histograms graphically display the spread of a cell value within the selected cells of a grid theme. Now turn on the Spatial Analyst toolbar by clicking Customize->Toolbar->Spatial Analyst Clear the selection on dem if necessary Open the Properties of dem_int. Under Symbology tab, choose Classified in Show box. Set Value for Value field. Set 30 for the classes. Click Classify button and set Natural Break for Method. Click OK. On the Spatial Analyst toolbar, click the dropdown arrow and choose dem_int for Layer. Click the Histogram button on the Spatial Analyst menu bar to create histogram After a minute or two, the histogram for all cells in the theme will be displayed. The number of columns in the histogram is the same as the number of classes in the grid theme's legend. The histogram shows elevation classes on the X axis and the number of cells within those classes on the Y axis. The Class-label shows the range of values in that class (which is the same thing shown on the legend for the X axis) and the COUNT of cells in that class (which is the same thing shown on the Y axis). Histograms are useful for browsing the range and distribution of data in a grid. Do the values of a grid follow a normal distribution, or is there some other type of pattern? What might that tell you about your data, and what implications does it have for further analysis? 7. Raster Reclassification In some cases, we do not need very detailed information. Instead, we are interested in categories of the values falling in. In this case, we can classify the raster into groups (categories) First we will change the symbology of dem_int to 7 classes with 50 as the interval UNBC 2017 ~ 5 ~

6 Right-click dem_int and open the properties window. Click Symbology tab and click classified in the Show box at left. Change the class to 7 and click Classify button right beside Here we can change the range values for each class. Click and highlight the top value in the Break Values box and type in 600. Then highlight the second value and type in 650. Type in the rest of range values 700, 750, 800, 850 and 900. Click OK to close the properties window. We only changed the display of the dataset, no permanent raster is generated with the classification values In ArcToolbox, click Spatial Analyst->Reclass->Reclassify. Input Raster dem_int Reclass field VALUE Output Raster K:\geog300\raster\dem_int7 Click OK. You may see that all reclassified classes are listed here. If not, click the Classify button and assign the range values. The Old Values field shows the range of values of regional raster and the New Values indicate the values that will be assigned to each class. The resulting raster will have the new value for each cell that falls into the range values. You can change the range values if necessary. Right-click dem_int7 and Open the Properties window. Click Symbology tab and choose Unique value in the Shows box and click OK. Each color corresponds to a class Add slope and aspect you created in DEM lab from your local folder. Reclassify slope into 10 classes with interval of 5. Save the output raster as slp_class10 Reclassify aspect into 10 classes with interval of 40. Save the output raster as asp_class10 Each number value represents a range value of slope and aspect respectively. Reclass of Slope Range Values Reclass of Aspect Range Values UNBC 2017 ~ 6 ~

7 8. Mapping Distance In this part of lab, we will explore more raster based analysis Open a new map file and add creeks, fcover, dem and samples from L:\labs\geog300\unbc. Turn off fcover and dem.tif for now Make sure you have Spatial Analyst extension enabled. Turn on the Spatial Analyst toolbar if necessary Set the raster analysis environment as the following: Workspace: Processing Extent: Raster Cell Size: K:\geog300\raster Same as fcover Same as dem.tif The distance mapping functions are global functions. It computes an output raster dataset where the output value at each location is potentially a function of all the cells in the input raster datasets. By mapping distance, you can find information such as the distance to the nearest hospital from a certain area, an emergency helicopter or find all fire hydrants within 500 meters of a burning building. Alternatively, you could find the shortest (or least-cost) path from one location to another based on some cost factor. We will examine some Euclidean functions. Euclidean Distance calculates, for each cell, the Euclidian distance to the closest source. In another words, it measures the straight line distance from each cell to the closest source. Euclidean direction calculates, for each cell, the direction, in degrees, to the nearest source. This function assigns each cell the value of the source to which it is closest. The nearest source is determined by the Euclidean Distance. Euclidean allocation calculates, for each cell, the nearest source based on Euclidean distance The Euclidean Distance function This function measures the straight line distance from each cell to the closest source (the source identifies the objects of interest such as wells, roads, or a school). The distance is measured from cell center to cell center. In ArcToolbox, click the Spatial Analyst->Distance-> Euclidean Distance Input Raster creeks Output Raster K:\geog300\raster\dist_creeks Leave everything else as it is and click OK. You can easily query the raster now. Here the cell values are the straight distance to the closet source (creeks). Assume that we are looking for the areas within 100 metres distance of creeks In ArcToolbox, click Spatial Analyst->Map Algebra->Raster calculator. Double click dist_creeks from the Layers list and click <= operator and type in 100. You will have a raster expression like the following: dist_creeks <= 100 Set the output raster to creeks100 in your local raster folder The cells within 100 meters of creeks will be assigned value of 1 and the rest of cells will have the value of 0 UNBC 2017 ~ 7 ~

8 9. Creating an allocation map Euclidean allocation function assigns each cell with the value of the source to which it is closest. The nearest source is determined by the Straight Line Distance. This function can used to assign space to objects such as trade area, service area, school catchments area etc. Assume that the sampling locations (samples) are treated as service centres and we want to determine the service area of each service centre based on the shortest distance to the service centers. Turn off all the layers. Add samples from L:\geog300\unbc. In ArcToolbox, click the Spatial Analyst->Distance-> Euclidean Allocation Set the parameters as the following Input Raster: Source Field: Output Allocation raster: Output distance raster: Output direction raster: samples ID alloc_samples dist_samples dir_samples Click OK. Three output rasters will be generated: distance to samples (dist_samples), direction to samples (dir_samples) and alloc_samples dist_samples dir_samples alloc_samples Examine alloc_samples. The allocation area of each service centre can be clearly seen by color. The area of each allocated area can be calculated in either raster data or vector data format. Calculate the area of an allocation map in the raster data A raster VAT table is created when you apply the allocation function. The Value field contains the source ID and the Count Field tells you the total number of cells that are allocated to the source. The area for each service centre can be calculated by the following formula: The area for each source = the total number of cells x cell size x cell size Open the attribute table of alloc_samples. There should be six records as there are six sample locations. The cells with the same value determine an allocation area. Now calculate the area for the upper right allocated area indicated by ID 6. Check the total number of cells with value of 6. That is The cell size is 5 (you specified in the environment) A new field AREA can be added in the VAT table and calculate the area for each service centre with the field calculator. Add a new field AREA in the VAT with double type, 15 for precision and 1 for scale. UNBC 2017 ~ 8 ~

9 Right-click on the field AREA and choose Field Calculator. Give the following formula in the lower box to calculate the area for each source. [COUNT] * 5 * 5 (cell size is 5) Click OK. You will have area value for each service centre in the VAT table. The unit is square meter. Calculate the area of an allocation map in vector data You can also calculate the areas for allocation map in a vector data. To do this, you need first convert the raster to vector data. In ArcToolbox, click Conversion Tools->From Raster->Raster to Polygon Set the parameters as the following: Input Raster: alloc_samples Field: VALUE Output Polygon Feature: K:\geog300\raster\alloc_vector Add an AREA field and calculate the area with Calculate Geometry tool 10. Zonal Statistics Zonal Statistics function lets you calculate statistic information on the input raster for each zone defined by a zone dataset A zone is all the cells in a raster that have the same value, regardless of whether or not they are contiguous. However, both raster and feature datasets can be used as the zone dataset. So, for example, residential is a zone of a land use raster dataset or a road feature dataset can be the zone for an accident dataset. Zonal statistical functions perform operations on a per-zone basis; a single output value is computed for every zone in the input zone dataset Now turn off all layers but fcover. Turn on dem. In ArcToolbox, click Spatial Analyst->Zonal->Zonal Statistics as Table Set the parameters as the following Input Raster or Feature zone data: fcover Zone Field: fcover_id Input Value Raster: dem Output Table: fc_dem.dbf (in your local folder) Check Ignore NoData in calculations and click OK. The resulting statistics table fc_dem.dbf will be added to ArcMap. This is a table not a spatial data, so you have to join this table to the fcover feature to find out all statistics information for each polygon. The table contains all the statistics information on elevation (dem) for each fcover polygon. Join fc_dem.dbf to fcover based the join field fcover_id UNBC 2017 ~ 9 ~

10 Examine the attribute table of fcover to see what's happened there. Right-click fcover and choose Open Attribute Table. Scroll to the right, you should see some new data fields added showing as: min minimum value of elevation for each polygon max maximum value of elevation for each polygon range the range value of elevation for each polygon mean the average value of elevation for each polygon std the standard deviation value of elevation for each polygon sum the summary value of elevation for each polygon These data fields can be used to query fcover on elevation. For example, we may be interested in the polygons whose average elevation is less than 800 meters. This can be easily done with Selection by Attributes 1. Select by attribute on fcover to locate all the polygons with average elevation less and equal to 800 Now add slopes you created in your DEM lab to ArcMap. Perform Zonal Statistics analysis on slope with fcover polygon as zone boundary. 11. Performing a Map Query and Map calculation Map Query Many raster analytical operations are performed by using the Raster Calculator. Click Geoprocessing->Environments->Raster Analysis. Clear the Raster Mask field if any Add fc_age, fc_ht and fc_sp1 from your local raster folder if necessary Add aspect and slope from your local dem folder Because dem is in floating-point, an attributes query is not possible; instead, a Map Query must be used to view a subset of cells. In ArcToolbox, click Spatial Analyst->Map Algebra ->Raster Calculator. ("dem" > 800) & ("dem" < 850) Set the output raster to K:\geog300\raster\dem800_850 and click OK The cell values between 800 and 850 in dem are coded as value of 1 and the rest cell values are coded of 0 in dem800_850. A map query is similar to a normal feature attribute query. It can be performed on either floating-point or integer rasters. The output is always a new raster, rather than a selected set. The output is a boolean entity, in which out cells are coded True(1) (meet the condition), False(0) (not meet the condition), or No Data. Unlike feature queries, map queries are not limited to single themes. Map queries can select cells that match a broad range of criteria, including multiple raster themes. For example, it is possible to select a group of cells whose values are within a range of elevation, within a range of slope, and also are within a range of aspect values Map calculation ("dem">700) & (("slope">5) & ("slope"<10)) & (("aspect">45) & ("aspect"<125)) Arithmetic expression can be applied on raster operations as well. For example, the radian is the standard unit of angular measure, used in many areas of mathematics, physics and engineering. It describes the plane angle subtended by a circular arc as the length of the arc divided by the radius of the arc. In some cases, we need the angle presented in radian for some special purpose. UNBC 2017 ~ 10 ~

11 Now let's convert azimuth degree to radians. The formula is: 1 = / 180 radian With Raster Calculator, create a new raster radians in your local folder raster Build the query expression something like the following and save the output as radian in your local folder "aspect" * / 180 The raster operators and functions Arithmetic operators allow for the addition, subtraction, multiplication, and division of two rasters, numbers, or a combination of the two. Relational operators evaluate specific relational conditions. If a condition is TRUE, the output is assigned 1; if a condition is FALSE, the output is assigned 0. Boolean operators use Boolean logic (TRUE or FALSE) on input rasters on a cell-by-cell basis. Output values of TRUE are written as 1 and FALSE as 0. Bitwise operators compute on the binary representation of the input values. Arithmetic Operators Description + Addition - Subtraction * Multiplication / Division Relational Operators Description == Relational Equal To > Relational Greater Than < Relational Less Than >= Relational Greater Than or Equal To <= Relational Less Than or Equal To ^= Relational Not Equal To Bitwise Operators Description && Bitwise And Bitwise Or!! Bitwise exclusive Or << Bitwise LeftShift >> Bitwise RightShift ^^ Bitwise Not Boolean Operators And (&) Or ( ) XOr (!) Not (^) Description Finds where values are true (nonzero) in the cells of both input rasters (shown in graphic below) Finds where nonzero values are present in the cells of one or both input rasters Finds where nonzero values are present in the cells of one input raster or another input raster, but not both Finds where nonzero values are not present in the cells of a single input raster Assignment 5: Raster analysis (5%) due Thursday Oct. 26 at 12pm Part A: Let's do some exercises with the raster datasets generated from this lab: fcover, creeks, dem.tif, slope, aspect, fc_sp1, fc_age, fc_ht, dist_creeks Set working environment as the following: Workspace: your local folder Analysis extent: Same as fcover Cellsize: Same as dem.tif 1. If you do not have the datasets listed above, then generate slope and aspect from dem.tif. Convert fc_sp1, fc_age, fc_ht from fcover. Generate a distance map dist_creeks from creeks 2. With raster calculator, create a raster dataset to locate the area that meet the conditions for each exercise below. 3. Write down the raster expression applied for each exercise and calculate the total area. UNBC 2017 ~ 11 ~

12 Exercise 1: Locate the area that meet the following criteria and save the output as ex1. Within 50 meters distance of water source (creeks) Have Spruce as the leading species Exercise 2: Locate the area that meet the following criteria and save the output as ex2. Within 100 meters distance of water source (creeks) Spruces as the leading species Stand age greater than 130 years old Exercise 3: Locate the area that meet the following criteria and save the output as ex3. Slope less than 5 degrees Face south (135<aspect <225) Stand age greater than 100 years old Exercise 4: Locate the area that meet the following criteria and save the output as ex4. Spruces OR Douglas Fir as the dominant species Stand height over 20 metres Within 50 metres distance of creeks. Part B: The city of Prince George has four fire stations to serve the entire city area. Assume that we want to know the fire response area for each fire hall based on the straight distance. This can be done with Allocation function discussed in this lab. Perform an Allocation analysis for fire halls with Id as the Source field and calculate the total area in hectares for each fire station it servers. Produce a map showing the service area together with fire_halls, pg_boundary. Label each fire hall with its location. The map should come with proper title, legend, scale, the total service area for each fire station and your name. Deliverable: Data required: L:\labs\geog300\pgcity: fire_halls, pg_boundary Working environment: Workspace: your local folder Processing extent: Same as pg_boundary Raster Analysis -Cell size: 10 Raster Analysis -Mask: pg_boundary Make a title page with the course name, assignment number, your lab session, your name and studentid. Provide raster expression applied for each exercise(ex1 Ex4) and the total area in hectares. Insert all maps to WORD file Save the file as lastname_firstname_geog _a6. the file to your TA with subject Geog300 A6 NOTE: Please name the file correctly. Assignment is due Thursday Oct 26 at 5pm NO late assignment is accepted ~~~~~~~~~~~~~ The End ~~~~~~~~~~~~~ UNBC 2017 ~ 12 ~

Module 7 Raster operations

Module 7 Raster operations Introduction Geo-Information Science Practical Manual Module 7 Raster operations 7. INTRODUCTION 7-1 LOCAL OPERATIONS 7-2 Mathematical functions and operators 7-5 Raster overlay 7-7 FOCAL OPERATIONS 7-8

More information

Cell based GIS. Introduction to rasters

Cell based GIS. Introduction to rasters Week 9 Cell based GIS Introduction to rasters topics of the week Spatial Problems Modeling Raster basics Application functions Analysis environment, the mask Application functions Spatial Analyst in ArcGIS

More information

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O TOPICS COVERED Spatial Analyst basics Raster / Vector conversion Raster data

More information

RASTER ANALYSIS GIS Analysis Winter 2016

RASTER ANALYSIS GIS Analysis Winter 2016 RASTER ANALYSIS GIS Analysis Winter 2016 Raster Data The Basics Raster Data Format Matrix of cells (pixels) organized into rows and columns (grid); each cell contains a value representing information.

More information

RASTER ANALYSIS GIS Analysis Fall 2013

RASTER ANALYSIS GIS Analysis Fall 2013 RASTER ANALYSIS GIS Analysis Fall 2013 Raster Data The Basics Raster Data Format Matrix of cells (pixels) organized into rows and columns (grid); each cell contains a value representing information. What

More information

Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater.

Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater. Overview: In this week's lab you will identify areas within Webster Township that are most vulnerable to surface and groundwater contamination by conducting a risk analysis with raster data. You will create

More information

Spatial Analysis with Raster Datasets

Spatial Analysis with Raster Datasets Spatial Analysis with Raster Datasets Francisco Olivera, Ph.D., P.E. Srikanth Koka Lauren Walker Aishwarya Vijaykumar Keri Clary Department of Civil Engineering April 21, 2014 Contents Brief Overview of

More information

Lab 12: Sampling and Interpolation

Lab 12: Sampling and Interpolation Lab 12: Sampling and Interpolation What You ll Learn: -Systematic and random sampling -Majority filtering -Stratified sampling -A few basic interpolation methods Videos that show how to copy/paste data

More information

Data Assembling Topics:

Data Assembling Topics: Topics: 1. GPX to Shape file 2. Data conversion with FME 3. Create a polygon feature 4. Merging /Appending data into a new dataset 5. Reproject data from one coordinate system to another 6. Data clipping

More information

Using GIS to Site Minimal Excavation Helicopter Landings

Using GIS to Site Minimal Excavation Helicopter Landings Using GIS to Site Minimal Excavation Helicopter Landings The objective of this analysis is to develop a suitability map for aid in locating helicopter landings in mountainous terrain. The tutorial uses

More information

Lecture 20 - Chapter 8 (Raster Analysis, part1)

Lecture 20 - Chapter 8 (Raster Analysis, part1) GEOL 452/552 - GIS for Geoscientists I Lecture 20 - Chapter 8 (Raster Analysis, part) 4 lectures on rasters - but won t cover everything (Raster GIS course: Geol 588: GIS II (Spring 20) Today: Raster data,

More information

Digital Elevation Model & Surface Analysis

Digital Elevation Model & Surface Analysis Topics: Digital Elevation Model & Surface Analysis 1. Introduction 2. Create raster DEM 3. Examine Lidar DEM 4. Deriving secondary surface products 5. Mapping contours 6. Viewshed Analysis 7. Extract elevation

More information

1. Preparing the base map. 2. Creating new shapefiles. Collecting Spatial Data by Digitizing

1. Preparing the base map. 2. Creating new shapefiles. Collecting Spatial Data by Digitizing Topics: 1. Preparing the base map 2. Creating new shapefiles 3. Digitizing Features 4. Modifying Existing Features 5. Adding Data Fields and editing Feature Attributes 6. Displaying and Labelling features

More information

Introduction to GIS 2011

Introduction to GIS 2011 Introduction to GIS 2011 Digital Elevation Models CREATING A TIN SURFACE FROM CONTOUR LINES 1. Start ArcCatalog from either Desktop or Start Menu. 2. In ArcCatalog, create a new folder dem under your c:\introgis_2011

More information

Lab 10: Raster Analyses

Lab 10: Raster Analyses Lab 10: Raster Analyses What You ll Learn: Spatial analysis and modeling with raster data. You will estimate the access costs for all points on a landscape, based on slope and distance to roads. You ll

More information

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Written by Gabriel Holbrow and Barbara Parmenter, revised on10/22/2018 for 10.6.1 Raster Suitability Analysis: Siting a

More information

Combine Yield Data From Combine to Contour Map Ag Leader

Combine Yield Data From Combine to Contour Map Ag Leader Combine Yield Data From Combine to Contour Map Ag Leader Exporting the Yield Data Using SMS Program 1. Data format On Hard Drive. 2. Start program SMS Basic. a. In the File menu choose Open. b. Click on

More information

INTRODUCTION TO GIS WORKSHOP EXERCISE

INTRODUCTION TO GIS WORKSHOP EXERCISE 111 Mulford Hall, College of Natural Resources, UC Berkeley (510) 643-4539 INTRODUCTION TO GIS WORKSHOP EXERCISE This exercise is a survey of some GIS and spatial analysis tools for ecological and natural

More information

Raster GIS applications

Raster GIS applications Raster GIS applications Columns Rows Image: cell value = amount of reflection from surface DEM: cell value = elevation (also slope/aspect/hillshade/curvature) Thematic layer: cell value = category or measured

More information

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Written by Gabriel Holbrow and Barbara Parmenter, revised by Carolyn Talmadge 11/2/2015 INTRODUCTION... 1 PREPROCESSED DATA

More information

Basics of Using LiDAR Data

Basics of Using LiDAR Data Conservation Applications of LiDAR Basics of Using LiDAR Data Exercise #2: Raster Processing 2013 Joel Nelson, University of Minnesota Department of Soil, Water, and Climate This exercise was developed

More information

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham Getting Started with Spatial Analyst Steve Kopp Elizabeth Graham Spatial Analyst Overview Over 100 geoprocessing tools plus raster functions Raster and vector analysis Construct workflows with ModelBuilder,

More information

Module 10 Data-action models

Module 10 Data-action models Introduction Geo-Information Science Practical Manual Module 10 Data-action models 10. INTRODUCTION 10-1 DESIGNING A DATA-ACTION MODEL 10-2 REPETITION EXERCISES 10-6 10. Introduction Until now you have

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap Harvard University Introduction to ArcMap Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 1: Basic Mapping in ArcMap Individual files (lab instructions,

More information

Working with Map Algebra

Working with Map Algebra Working with Map Algebra While you can accomplish much with the Spatial Analyst user interface, you can do even more with Map Algebra, the analysis language of Spatial Analyst. Map Algebra expressions

More information

GEO 465/565 - Lab 7 Working with GTOPO30 Data in ArcGIS 9

GEO 465/565 - Lab 7 Working with GTOPO30 Data in ArcGIS 9 GEO 465/565 - Lab 7 Working with GTOPO30 Data in ArcGIS 9 This lab explains how work with a Global 30-Arc-Second (GTOPO30) digital elevation model (DEM) from the U.S. Geological Survey. This dataset can

More information

Raster: The Other GIS Data

Raster: The Other GIS Data Raster_The_Other_GIS_Data.Docx 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

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4 Data Assembly, Part II GIS Cyberinfrastructure Module Day 4 Objectives Continuation of effective troubleshooting Create shapefiles for analysis with buffers, union, and dissolve functions Calculate polygon

More information

STUDENT PAGES GIS Tutorial Treasure in the Treasure State

STUDENT PAGES GIS Tutorial Treasure in the Treasure State STUDENT PAGES GIS Tutorial Treasure in the Treasure State Copyright 2015 Bear Trust International GIS Tutorial 1 Exercise 1: Make a Hand Drawn Map of the School Yard and Playground Your teacher will provide

More information

Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones

Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones Created by Patrick Florance. Revised on 10/22/18 for 10.6.1 OVERVIEW... 1 SETTING UP... 1 ENABLING THE SPATIAL ANALYST

More information

Geographic Information Systems (GIS) Spatial Analyst [10] Dr. Mohammad N. Almasri. [10] Spring 2018 GIS Dr. Mohammad N. Almasri Spatial Analyst

Geographic Information Systems (GIS) Spatial Analyst [10] Dr. Mohammad N. Almasri. [10] Spring 2018 GIS Dr. Mohammad N. Almasri Spatial Analyst Geographic Information Systems (GIS) Spatial Analyst [10] Dr. Mohammad N. Almasri 1 Preface POINTS, LINES, and POLYGONS are good at representing geographic objects with distinct shapes They are less good

More information

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS HOUSEKEEPING Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS CONTOURS! Self-Paced Lab Due Friday! WEEK SIX Lecture RASTER ANALYSES Joe Wheaton YOUR EXCERCISE Integer Elevations Rounded up

More information

Raster Data. James Frew ESM 263 Winter

Raster Data. James Frew ESM 263 Winter Raster Data 1 Vector Data Review discrete objects geometry = points by themselves connected lines closed polygons attributes linked to feature ID explicit location every point has coordinates 2 Fields

More information

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham Getting Started with Spatial Analyst Steve Kopp Elizabeth Graham Workshop Overview Fundamentals of using Spatial Analyst What analysis capabilities exist and where to find them How to build a simple site

More information

GEOGRAPHIC INFORMATION SYSTEMS Lecture 18: Spatial Modeling

GEOGRAPHIC INFORMATION SYSTEMS Lecture 18: Spatial Modeling Spatial Analysis in GIS (cont d) GEOGRAPHIC INFORMATION SYSTEMS Lecture 18: Spatial Modeling - the basic types of analysis that can be accomplished with a GIS are outlined in The Esri Guide to GIS Analysis

More information

GEO 465/565 Lab 6: Modeling Landslide Susceptibility

GEO 465/565 Lab 6: Modeling Landslide Susceptibility 1 GEO 465/565 Lab 6: Modeling Landslide Susceptibility This lab will give you more practice in understanding and building a GIS analysis model. Recall from class lecture that a GIS analysis model is a

More information

Raster GIS applications Columns

Raster GIS applications Columns Raster GIS applications Columns Rows Image: cell value = amount of reflection from surface Thematic layer: cell value = category or measured value - In both cases, there is only one value per cell (in

More information

Exercise 1: An Overview of ArcMap and ArcCatalog

Exercise 1: An Overview of ArcMap and ArcCatalog Exercise 1: An Overview of ArcMap and ArcCatalog Introduction: ArcGIS is an integrated collection of GIS software products for building a complete GIS. ArcGIS enables users to deploy GIS functionality

More information

Lab 7: Tables Operations in ArcMap

Lab 7: Tables Operations in ArcMap Lab 7: Tables Operations in ArcMap What You ll Learn: This Lab provides more practice with tabular data management in ArcMap. In this Lab, we will view, select, re-order, and update tabular data. You should

More information

Making Yield Contour Maps Using John Deere Data

Making Yield Contour Maps Using John Deere Data Making Yield Contour Maps Using John Deere Data Exporting the Yield Data Using JDOffice 1. Data Format On Hard Drive 2. Start program JD Office. a. From the PC Card menu on the left of the screen choose

More information

Lab 12: Sampling and Interpolation

Lab 12: Sampling and Interpolation Lab 12: Sampling and Interpolation What You ll Learn: -Systematic and random sampling -Majority filtering -Stratified sampling -A few basic interpolation methods Data for the exercise are in the L12 subdirectory.

More information

Lab 11: Terrain Analyses

Lab 11: Terrain Analyses Lab 11: Terrain Analyses What You ll Learn: Basic terrain analysis functions, including watershed, viewshed, and profile processing. There is a mix of old and new functions used in this lab. We ll explain

More information

GIS LAB 8. Raster Data Applications Watershed Delineation

GIS LAB 8. Raster Data Applications Watershed Delineation GIS LAB 8 Raster Data Applications Watershed Delineation This lab will require you to further your familiarity with raster data structures and the Spatial Analyst. The data for this lab are drawn from

More information

Field-Scale Watershed Analysis

Field-Scale Watershed Analysis Conservation Applications of LiDAR Field-Scale Watershed Analysis A Supplemental Exercise for the Hydrologic Applications Module Andy Jenks, University of Minnesota Department of Forest Resources 2013

More information

Raster Analysis and Functions. David Tenenbaum EEOS 465 / 627 UMass Boston

Raster Analysis and Functions. David Tenenbaum EEOS 465 / 627 UMass Boston Raster Analysis and Functions Local Functions By-cell operations Operated on by individual operators or by coregistered grid cells from other themes Begin with each target cell, manipulate through available

More information

GEOG 487 Lesson 7: Step- by- Step Activity

GEOG 487 Lesson 7: Step- by- Step Activity GEOG 487 Lesson 7: Step- by- Step Activity Part I: Review the Relevant Data Layers and Organize the Map Document In Part I, we will review the data and organize the map document for analysis. 1. Unzip

More information

Lab 10: Raster Analyses

Lab 10: Raster Analyses Lab 10: Raster Analyses What You ll Learn: Spatial analysis and modeling with raster data. You will estimate the access costs for all points on a landscape, based on slope and distance to roads. You ll

More information

ENGRG Introduction to GIS

ENGRG Introduction to GIS ENGRG 59910 Introduction to GIS Michael Piasecki April 3, 2014 Lecture 11: Raster Analysis GIS Related? 4/3/2014 ENGRG 59910 Intro to GIS 2 1 Why we use Raster GIS In our previous discussion of data models,

More information

GEOG 487 Lesson 8: Step-by-Step Activity

GEOG 487 Lesson 8: Step-by-Step Activity GEOG 487 Lesson 8: Step-by-Step Activity Part I: Review the Relevant Data Layers and Organize the Map Document In Part I, we will review the starting datasets and organize the map document for analysis.

More information

Masking Lidar Cliff-Edge Artifacts

Masking Lidar Cliff-Edge Artifacts Masking Lidar Cliff-Edge Artifacts Methods 6/12/2014 Authors: Abigail Schaaf is a Remote Sensing Specialist at RedCastle Resources, Inc., working on site at the Remote Sensing Applications Center in Salt

More information

Working with Elevation Data URPL 969 Applied GIS Workshop: Rethinking New Orleans After Hurricane Katrina Spring 2006

Working with Elevation Data URPL 969 Applied GIS Workshop: Rethinking New Orleans After Hurricane Katrina Spring 2006 Working with Elevation Data URPL 969 Applied GIS Workshop: Rethinking New Orleans After Hurricane Katrina Spring 2006 This GIS lab exercise will explore Light Detection And Ranging (LiDAR) data for New

More information

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcGIS Procedures NUMBER OPERATION APPLICATION: TOOLBAR 1 Import interchange file to coverage 2 Create a new 3 Create a new feature dataset 4 Import Rasters into a 5 Import tables into a PROCEDURE Coverage

More information

Spatial Calculation of Locus Allele Frequencies Using ArcView 3.2

Spatial Calculation of Locus Allele Frequencies Using ArcView 3.2 Spatial Calculation of Locus Allele Frequencies Using ArcView 3.2 This instruction set applies to calculating allele frequency from point data of DNA analysis results within ArcView 3.2. To calculate the

More information

GIS Basics for Urban Studies

GIS Basics for Urban Studies GIS Basics for Urban Studies Date: March 21, 2018 Contacts: Mehdi Aminipouri, Graduate Peer GIS Faciliator, SFU Library (maminipo@sfu.ca) Keshav Mukunda, GIS & Map Librarian Librarian for Geography (kmukunda@sfu.ca)

More information

Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use

Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use ArcCatalog to find maps and data and how to display maps in

More information

GIS Fundamentals: Supplementary Lessons with ArcGIS Pro

GIS Fundamentals: Supplementary Lessons with ArcGIS Pro Station Analysis (parts 1 & 2) What You ll Learn: - Practice various skills using ArcMap. - Combining parcels, land use, impervious surface, and elevation data to calculate suitabilities for various uses

More information

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University Lecture 6: GIS Spatial Analysis GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University 1 Spatial Data It can be most simply defined as information that describes the distribution

More information

USING 2001 CENSUS DATA IN ArcMap 8.2

USING 2001 CENSUS DATA IN ArcMap 8.2 USING 2001 CENSUS DATA IN ArcMap 8.2 This is a guide to mapping 2001 Census data in ArcMap using age and sex profile data for Toronto at the census tract level. Importing boundary files, importing census

More information

Introduction to LiDAR

Introduction to LiDAR Introduction to LiDAR Our goals here are to introduce you to LiDAR data. LiDAR data is becoming common, provides ground, building, and vegetation heights at high accuracy and detail, and is available statewide.

More information

+ = Spatial Analysis of Raster Data. 2 =Fault in shale 3 = Fault in limestone 4 = no Fault, shale 5 = no Fault, limestone. 2 = fault 4 = no fault

+ = Spatial Analysis of Raster Data. 2 =Fault in shale 3 = Fault in limestone 4 = no Fault, shale 5 = no Fault, limestone. 2 = fault 4 = no fault Spatial Analysis of Raster Data 0 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 2 4 4 4 2 4 5 5 4 2 4 4 4 2 5 5 4 4 2 4 5 4 3 5 4 4 4 2 5 5 5 3 + = 0 = shale 1 = limestone 2 = fault 4 = no fault 2 =Fault in shale 3 =

More information

Stream network delineation and scaling issues with high resolution data

Stream network delineation and scaling issues with high resolution data Stream network delineation and scaling issues with high resolution data Roman DiBiase, Arizona State University, May 1, 2008 Abstract: In this tutorial, we will go through the process of extracting a stream

More information

Remote Sensing & GIS (Bio/Env384 A): 10 November 2015 GIS Database Query

Remote Sensing & GIS (Bio/Env384 A): 10 November 2015 GIS Database Query Remote Sensing & GIS (Bio/Env384 A): 10 November 2015 GIS Database Query One primary purpose of establishing any GIS database is to provide the possibility of querying that database, i.e., of asking questions

More information

Step by Step GIS. Section 1

Step by Step GIS. Section 1 Step by Step GIS Section 1 Contact the web page given below for the data required to do the exercises (http://www.pasda.psu.edu/default.asp) Before beginning the tutorials please visit the Preparation

More information

Part 6b: The effect of scale on raster calculations mean local relief and slope

Part 6b: The effect of scale on raster calculations mean local relief and slope Part 6b: The effect of scale on raster calculations mean local relief and slope Due: Be done with this section by class on Monday 10 Oct. Tasks: Calculate slope for three rasters and produce a decent looking

More information

NV CCS USER S GUIDE V1.1 ADDENDUM

NV CCS USER S GUIDE V1.1 ADDENDUM NV CCS USER S GUIDE V1.1 ADDENDUM PAGE 1 FOR CREDIT PROJECTS THAT PROPOSE TO MODIFY CONIFER COVER Released 5/19/2016 This addendum provides instructions for evaluating credit projects that propose to treat

More information

Introducing ArcScan for ArcGIS

Introducing ArcScan for ArcGIS Introducing ArcScan for ArcGIS An ESRI White Paper August 2003 ESRI 380 New York St., Redlands, CA 92373-8100, USA TEL 909-793-2853 FAX 909-793-5953 E-MAIL info@esri.com WEB www.esri.com Copyright 2003

More information

LAB 1: Introduction to ArcGIS 8

LAB 1: Introduction to ArcGIS 8 LAB 1: Introduction to ArcGIS 8 Outline Introduction Purpose Lab Basics o About the Computers o About the software o Additional information Data ArcGIS Applications o Starting ArcGIS o o o Conclusion To

More information

Delineating Watersheds from a Digital Elevation Model (DEM)

Delineating Watersheds from a Digital Elevation Model (DEM) Delineating Watersheds from a Digital Elevation Model (DEM) (Using example from the ESRI virtual campus found at http://training.esri.com/courses/natres/index.cfm?c=153) Download locations for additional

More information

Lesson 8 : How to Create a Distance from a Water Layer

Lesson 8 : How to Create a Distance from a Water Layer Created By: Lane Carter Advisor: Paul Evangelista Date: July 2011 Software: ArcGIS 10 Lesson 8 : How to Create a Distance from a Water Layer Background This tutorial will cover the basic processes involved

More information

Introduction to GIS & Mapping: ArcGIS Desktop

Introduction to GIS & Mapping: ArcGIS Desktop Introduction to GIS & Mapping: ArcGIS Desktop Your task in this exercise is to determine the best place to build a mixed use facility in Hudson County, NJ. In order to revitalize the community and take

More information

Map Analysis of Raster Data I 3/8/2018

Map Analysis of Raster Data I 3/8/2018 Map Analysis of Raster Data I /8/8 Spatial Analysis of Raster Data What is Spatial Analysis? = shale = limestone 4 4 4 4 5 5 4 4 4 4 5 5 4 4 4 5 4 5 4 4 4 5 5 5 + = = fault =Fault in shale 4 = no fault

More information

How does Map Algebra work?

How does Map Algebra work? Map Algebra How does Map Algebra work? Map Algebra uses math-like expressions containing operators and functions with raster data. Map Algebra operators, which are relational, Boolean, logical, combinatorial,

More information

Lab 11: Terrain Analyses

Lab 11: Terrain Analyses Lab 11: Terrain Analyses What You ll Learn: Basic terrain analysis functions, including watershed, viewshed, and profile processing. There is a mix of old and new functions used in this lab. We ll explain

More information

Understanding Geospatial Data Models

Understanding Geospatial Data Models Understanding Geospatial Data Models 1 A geospatial data model is a formal means of representing spatially referenced information. It is a simplified view of physical entities and a conceptualization of

More information

Ex. 4: Locational Editing of The BARC

Ex. 4: Locational Editing of The BARC Ex. 4: Locational Editing of The BARC Using the BARC for BAER Support Document Updated: April 2010 These exercises are written for ArcGIS 9.x. Some steps may vary slightly if you are working in ArcGIS

More information

GIS Workbook #1. GIS Basics and the ArcGIS Environment. Helen Goodchild

GIS Workbook #1. GIS Basics and the ArcGIS Environment. Helen Goodchild GIS Basics and the ArcGIS Environment Helen Goodchild Overview of Geographic Information Systems Geographical Information Systems (GIS) are used to display, manipulate and analyse spatial data (data that

More information

Basic Queries Exercise - Haiti

Basic Queries Exercise - Haiti Basic Queries Exercise - Haiti Written by Barbara Parmenter, revised by Carolyn Talmadge on September 18, 2016 SETTING UP... 1 WHERE ARE THE HOSPITALS THAT ARE STILL OPERATING? (SELECT BY ATTRIBUTE )...

More information

Pond Distance and Habitat for use in Wildlife Modeling

Pond Distance and Habitat for use in Wildlife Modeling Pond Distance and Habitat for use in Wildlife Modeling These instructions enable you to aggregate layers within a study area, calculate new fields, and create new data out of existing data, for use in

More information

Lab 10: Raster Analyses

Lab 10: Raster Analyses Lab 10: Raster Analyses What You ll Learn: Spatial analysis and modeling with raster data. You will estimate the access costs for all points on a landscape, based on slope and distance to roads. You ll

More information

Priming the Pump Stage II

Priming the Pump Stage II Priming the Pump Stage II Modeling and mapping concentration with fire response networks By Mike Price, Entrada/San Juan, Inc. The article Priming the Pump Preparing data for concentration modeling with

More information

Mapping Distance and Density

Mapping Distance and Density Mapping Distance and Density Distance functions allow you to determine the nearest location of something or the least-cost path to a particular destination. Density functions, on the other hand, allow

More information

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views ArcView QuickStart Guide Page 1 ArcView QuickStart Guide Contents The ArcView Screen Elements of an ArcView Project Creating an ArcView Project Adding Themes to Views Zoom and Pan Tools Querying Themes

More information

GIS IN ECOLOGY: MORE RASTER ANALYSES

GIS IN ECOLOGY: MORE RASTER ANALYSES GIS IN ECOLOGY: MORE RASTER ANALYSES Contents Introduction... 2 More Raster Application Functions... 2 Data Sources... 3 Tasks... 4 Raster Recap... 4 Viewshed Determining Visibility... 5 Hydrology Modeling

More information

Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations,

Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations, Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations, readings, and hands on GIS lab exercises. Following the last

More information

Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. CHAPTER 12 RASTER DATA ANALYSIS 12.1 Data Analysis Environment Box 12.1 How to Make an Analysis Mask 12.2 Local Operations 12.2.1 Local Operations with a Single Raster 12.2.2 Reclassification 12.2.3 Local

More information

Workshop Exercises for Digital Terrain Analysis with LiDAR for Clean Water Implementation

Workshop Exercises for Digital Terrain Analysis with LiDAR for Clean Water Implementation Workshop Exercises for Digital Terrain Analysis with LiDAR for Clean Water Implementation This manual is designed to accompany lecture and handout materials provided at a series of workshops offered in

More information

City of Richmond Interactive Map (RIM) User Guide for the Public

City of Richmond Interactive Map (RIM) User Guide for the Public Interactive Map (RIM) User Guide for the Public Date: March 26, 2013 Version: 1.0 3479477 3479477 Table of Contents Table of Contents Table of Contents... i About this

More information

Explore some of the new functionality in ArcMap 10

Explore some of the new functionality in ArcMap 10 Explore some of the new functionality in ArcMap 10 Scenario In this exercise, imagine you are a GIS analyst working for Old Dominion University. Construction will begin shortly on renovation of the new

More information

Exercise Producing Thematic Maps for Dissemination

Exercise Producing Thematic Maps for Dissemination Exercise Producing Thematic Maps for Dissemination 2007 In this exercise you will work with an existing file geodatabase which contains administrative boundaries (named wards) feature class and population

More information

Exercise 2-1 Cartographic Modeling

Exercise 2-1 Cartographic Modeling Exercise 2-1 Cartographic Modeling A cartographic model is a graphic representation of the data and analytical procedures used in a study. Its purpose is to help the analyst organize and structure the

More information

A Hands-on Experience with Arc/Info 8 Desktop

A Hands-on Experience with Arc/Info 8 Desktop Demo of Arc/Info 8 Desktop page 1 of 17 A Hands-on Experience with Arc/Info 8 Desktop Prepared by Xun Shi and Ted Quinby Geography 377 December 2000 In this DEMO, we introduce a brand new edition of ArcInfo,

More information

Notes: Notes: Notes: Notes:

Notes: Notes: Notes: Notes: NR406 GIS Applications in Fire Ecology & Management Lesson 2 - Overlay Analysis in GIS Gathering Information from Multiple Data Layers One of the many strengths of a GIS is that you can stack several data

More information

4. If you are prompted to enable hardware acceleration to improve performance, click

4. If you are prompted to enable hardware acceleration to improve performance, click Exercise 1a: Creating new points ArcGIS 10 Complexity: Beginner Data Requirement: ArcGIS Tutorial Data Setup About creating new points In this exercise, you will use an aerial photograph to create a new

More information

Using a Geographic Information System (GIS) to look at marine fisheries data

Using a Geographic Information System (GIS) to look at marine fisheries data Using a Geographic Information System (GIS) to look at marine fisheries data Daniel Sheehan GIS Programmer & Analyst Office of Educational Innovation & Technology dsheehan@mit.edu x2-1475 Introduction

More information

ArcGIS 10.x Basic Exercise GMU Libraries

ArcGIS 10.x Basic Exercise GMU Libraries ArcGIS 10.x Basic Exercise GMU Libraries Goals of this exercise To introduce basic functions available in ArcGIS 10.x to create a simple thematic map You are going to create a thematic map using VA county

More information

Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools

Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools Prepared by Venkatesh Merwade School of Civil Engineering, Purdue University vmerwade@purdue.edu January 2018 Objective The

More information

v Importing Rasters SMS 11.2 Tutorial Requirements Raster Module Map Module Mesh Module Time minutes Prerequisites Overview Tutorial

v Importing Rasters SMS 11.2 Tutorial Requirements Raster Module Map Module Mesh Module Time minutes Prerequisites Overview Tutorial v. 11.2 SMS 11.2 Tutorial Objectives This tutorial teaches how to import a Raster, view elevations at individual points, change display options for multiple views of the data, show the 2D profile plots,

More information

THE HONG KONG POLYTECHNIC UNIVERSITY DEPARTMENT OF LAND SURVEYING & GEO-INFORMATICS LSGI521 PRINCIPLES OF GIS

THE HONG KONG POLYTECHNIC UNIVERSITY DEPARTMENT OF LAND SURVEYING & GEO-INFORMATICS LSGI521 PRINCIPLES OF GIS THE HONG KONG POLYTECHNIC UNIVERSITY DEPARTMENT OF LAND SURVEYING & GEO-INFORMATICS LSGI521 PRINCIPLES OF GIS Student name: Student ID: Table of Content Working with files, folders, various software and

More information

Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams.

Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams. GIS LAB 3 Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams. One of the primary goals of this course is to give you some hands-on

More information

A Second Look at DEM s

A Second Look at DEM s A Second Look at DEM s Overview Detailed topographic data is available for the U.S. from several sources and in several formats. Perhaps the most readily available and easy to use is the National Elevation

More information