Introduction to LiDAR

Size: px
Start display at page:

Download "Introduction to LiDAR"

Transcription

1 Introduction to LiDAR Our goals here are to introduce you to LiDAR data, to show you how to download it for an area of interest, and to better understand the data and uses through some simple manipulations. In our project we ll be calculating building and tree heights for your project area. The state on Minnesota has flown LiDAR for the entire state. Data may be interactively downloaded via the MN DNR MNTopo viewer ( or for larger areas via the MNGEO ftp site (ftp://ftp.lmic.state.mn.us/pub/data/elevation/lidar/). Raster DEMs, hillshades, contours, and the raw data or point cloud data may be downloaded, in ESRI geodatabases or in commonly supported formats. We will download LiDAR data and derived layers and prepare them for inclusion in our Campus GIS. We will first work with the processed layers, and later the raw data, primarily for building heights. We need to merge together several tiles for the complete St. Paul Campus. This is common when working with LiDAR. Our individual study areas are small, so we ve only a few tiles. Open the MnTOPO website, and familiarize yourself with the tools near the upper right. Use the default display and the zoom button in the upper left, and click- hold- drag to pan, to get the approximate Campus area displayed. Use the download data tool (disk drive with arrow icon, in the toolbar row, upper/left), specify a polygon that is centered on your individual project area. Download the 1 m dem, 1m hillshade the raw lidar point cloud data (these will be.las or.laz (a compressed form) You ll see the DEM and hillshade are rasters, and the raw lidar point data are in files with a.laz extension. The codes are tile number, tiled and compressed to a.laz format. You should copy the DEM and hillshade, and the relevant laz/las files from your download directory to a new directory, in this example we ll call it \LASData. Note that you don t need all the.laz/.las point files that MnTOPO downloaded in the tile. You should refer to the image below, and only copy the files you need for your project area. The boundaries correspond to the tile borders, and the labels the.laz/.las file names. Also note, your working directory should NOT be on a network drive, e.g., the class L drive. LAS files are often quite large, and the overhead of copying and then writing back to the drive across a network is often too slow. Best to work on a local drive, that is, the drive on your computer, or a USB drive plugged into one of the ports. 1

2 Display the DEM and hillshade surfaces. These are largely from an automated process that first tries to identify the bare earth, or ground only returns, and then build a DEM and a hillshade. Notice the odd shapes, sometimes like triangles, on the hillshade surface within the building footprints. These are artifacts of lidar data processing. The algorithms have a hard time identifying the ground near buildings perfectly, so there are often triangular shapes on or near buildings. You also see a roughness and occasional small bumps over grass or forest areas, these are also artifacts of the processing. Also notice the DEM rasters are in UTM15 NAD83(1986). You will need to transform them to CORS96 if you wish to avoid the warnings about datum conflicts when displayed with your other project data. You can do all the following steps in ArcGIS, we will be using LASTools, a widely- used, general purpose lidar processing toolbox that is much faster than processing in Arc, and quite flexible. The UMN has a site licence for LASTools, so we ll be using it for this small exercise. You should make two sub- directories within your \LasData directory, one named buildings, and one named tallveg, into which we ll be subsetting the las data. When you re done, your directory should look something like this window below. 2

3 You notice I ve converted copies of the.laz to.las files. You don t need to, but notice the.laz files are much smaller than the.las. Because lidar data are often so large, there is usually a tradeoff between saving space and processing speed. We re working with a small area, so it doesn t much matter, but in many real projects it does. Also note that I only show a subset of the.las files, your set will depend on your study area. You should know a few more things about LiDAR data. Remember, these LiDAR are from pulses of light sent down from a plane, then reflected back from a target. Precise geometry allows operators to determine the x, y, and z coordinates to within a few inches of each object that reflects back a pulse. There can be many returns measured from each pulse, although we re most often interested in the first returns, to measure object heights, and the last returns, to measure ground elevation. The data are processed before they re delivered, and the collecting organization usually applies algorithms to try to detect ground hits (not all last returns are from the ground), object heights (not all first returns are from the tops of objects), and to provide other information about each data point. Most times each return point contains information on the return number (first, last, or in between), the feature classification (2 = ground, 4 = mid- height vegetation, 5 = high vegetation, 6 = building, 9= water, 0 = unclassified), as well as the scan angle, the strength of the return signal, and other information about the point. LASTools, and most other lidar processing tools, allow us to access these data. We ll use the command prompt to run LAStools. The command prompt is found via the Windows Start button (pink arrow, right), then in the 3

4 Accessories folder > Command Prompt (green arrow and circled, at right) This will open a small window that only allows only text entry (see below). The prompt shows the current path string. Want to set the path to your data location. First type in the drive letter, in my case the Y drive, so I type in the drive letter and then hit return to change to that drive: Y: The prompt should now show the drive, in my case: Y:\ I then use the CD (Change Directory) command to change the active directory, typing in: CD downloads\lasdata So the prompt now becomes: Y:\downloads\lasdata I can type DIR (for directory) and then hit return, it should list the directory contents. I can check it against the Windows Explorer view of the directory, show at the bottom of page 2, to verify I m at the correct subdirectory. Now, on to processing. LASTools is a bit old school, you don t have access to a GUI, you specify options through flags on a command line. Each flag in LASTools starts with a dash, e.g., - i means the following text specifies the input file(s). This is a bit cumbersome for single file processing, but it is great for writing small programs to do repetitive tasks. Another key bit of information is that the asterisk * stands for match everything, and helps 4

5 when specifying multiple files. If you ve copied the LASTools programs from the CLD drive, and are working at home or another non- Skok 35 computer, you ll have to type something like the following line, and enter: set PATH=%PATH%;c:\yourdirectory\lastools\bin where c:\yourdirectory is the path to the directory on your computer that contains the lastools directory. If you re working in 35 Skok, ignore this. The first command we ll type is: Las2las i *.laz odir buildings keep_class 6 This uses the las2las tool to: Read all the.laz files as input (- i means input, the *.laz uses the wildcard symbol * to match anything that comes before a.laz extension). NOTE HERE: IF I ve already uncompressed my.laz files to.las files, I HAVE TO SPECIFY - i *.las as the input Output them to the directory named buildings ( - odir buildings), and Only keep the class labeled 6 (- keep_class 6), in this case the points classified as building points You may get a comment saying the use of LasTools is unauthorized, ignore it. We do have a license, but setting it up requires a few more steps, and the changes they might warn about are minor, and don t change our outcome. We can use CD change to that buildings directory after the command runs, and verify the command worked: Notice the files have the same name as the originals (that s why we put them in a clearly labeled sub- directory), but that they re much smaller, the subset building file is 16,337,316 bytes (16.3 Mb), while the full data set was almost 166 Mb; we ve sampled out only the building returns, and the file is less than 10% of the original size. 5

6 We can apply a similar command to specify keeping only the vegetation classes (3, low veg, 4, medium trees, and 5, high trees): Las2las i *.laz odir tallveg keep_class Note the output directory is set to tallveg here. You should check yourself to make sure the command worked, and note the decrease in size. Convert these las points to ESRI shapefiles with the las2shp command. To convert type in: las2shp i buildings\*.las single_points and hit return. Again, you may get a warning that you re unauthorized, and they re adding small errors to the data, you can ignore them here. The command accesses the las2shp command (las2shp), tells it to use all.las files in the buildings directory as input ( i buildings\*.las), and to output single- point shape files (- single_points), not multipoint files, which cluster points in blocks, reducing file size, but encumbering access. Verify the above command worked, first by looking in the buildings directory and checking that shape file(s) appeared, and then by displaying the data in an ArcMap view: You can see the points, here in yellow, more or less match the building locations. The slight mismatch is because of building lean in the aerial photographs. You might remember that orthophotos correct all locations as if they were on the ground, and the tops of buildings aren t. Thus, the tops get displaced, usually outward from the imaging center relative to the camera position. That s why skyscrapers seem to lean in most vertical orthophotos. 6

7 Now we should look at heights. First, we need to create a variable to hold our eventual height, measured from the ground to the top of the object. Open the table for each of your point shapefiles, and add a new field named zheight, double or float, precision 12, scale 1. This may take some time for each tile, you could try to use the AddField command as an ArcMap batch job. You are strongly encouraged to do this and the following operations as batch jobs (see course resources, or ask Andy or Paul for help). This will greatly ease your work. Next, we need to extract heights from the points. It is usually more efficient to do it as a batch job with the Add Geometry Attributes tool, specify meters and square meters for units, and our project coordinate system. Note that this tool will also add the x and y coordinates for each point. When the process is finished, use the identify button to query a few building heights (z values). Remember, the values are in meters. Do these values make sense? Are the buildings over 200 meters (650 ft) tall? Why do you think you re getting these values? The Z value represents the orthometric height of the top of the building. This is the height relative to our standard surface, near sea level, and not relative to the local ground surface. We need to subtract the local ground surface from the building z value to get building height. One way is to query the DEM raster below each point, and add it to the table record for each point. We can then subtract the DEM height from the z values we calculated from the Add Geometry Attributes, and get a building height. The Extract Values to Points tool, found at ArcToolbox- > Spatial Analyst Tools- > Extract- > Extract values to points does just this. Specifying the input and outputs will query each cell below each point, and add a column to the new data layer specified. This may take quite a long time, so be patient, and again, this process can be run as a batch job for multiple files. 7

8 This generates a new column named RASTEVAL that contains the ground elevations near at each point: (ignore the zheight value in the table at left, this is from a test run, in your files it will be zero or null/not assigned) Now you can calculate the building heights for each point. You can do this manually, but it is better to do it as a batch job with the Calculate Field command. Create a new field called something like build_hght for the height above- ground sampled at each point, and then batch job the field calculation. When you are done, you should have a table that looks something like the one to the right: Now, calculate the average height from point samples for one of your buildings. There are several ways to do this, and it would easiest is with the Spatial Join tool. However, it doesn t work much of the time, freezing up, or worse, returning erroneous answers, with no warning that the values are wrong. There is an alternative which appears to work in most cases, that involves multiple steps. First apply the Intersect tool, with the input building polygons, and the processed LiDAR point file. First, we need polygons for a buildings layer, with IDs you ve assigned (typically short integer), and for clarity, a building name. You should already have created this building layer as part of your database. You may have to display both the LiDAR points and an image of the study area with your building, and adjust the building footprint polygon a bit to account for building lean. 8

9 After ensuring you have a proper buildings file, read the Intersect tool s documentation. Start the Intersect tool, and specify your building and processed (heights calculated) LiDAR points. If you specify All for the join attributes, it will join the attributes by spatial location, into a point file, with the building assigned to each point. We can see the attribute table for the point features below. The last three columns are from the buildings layer, with the building FID, ID, and name, and all the columns before, from FID* through RASTERVAL, are from the point file, including the height for each LiDAR point that landed on the building. 9

10 Now we need to aggregate the points for each building. The easiest way is through the Summary Statistics tool. This summarized features, and I can assign case attributes. This will calculate the summary statistics for every different value of the case attribute. If I make the building ID my case attribute, it will create a table with summary statistics for each unique building. The tool is shown below: Here I ve specified my intersected building/lidar point set as the input, an output table, and the field, statistics, and case attribute. I am calculating the mean height for the building. You might argue I want the tallest point for a building, but most roofs don t vary much in height, and I was concerned that a building might have a tower or scaffold on top, and hence get the a large error. For tree canopies, a maximum statistic would probably make more sense. Running this creates an output table: Note there is a mean height for each case of the building ID. I can then simply join this to my building layer by 10

11 the ID column, and copy/save the joined file to get my height for each building. There are some nuances in applying. Multi- leveled buildings may have to be split into the various pieces, and the heights calculated separately to make much sense. If the building footprints are too large, or there are many errors in classification, then there may be a bit of bias downward. Generally, these errors appear to be small in our application, and this measurement is good enough for our use. Perform these processing steps for both the buildings and the canopy data layer, so that each feature has a LiDAR height. As noted earlier, you should probably calculate the maximum statistic in for the canopy data layer, and the mean statistics for the buildings layer, but evaluate and decide for yourself. Turn in a map of showing your subset LiDAR data for your project area, your building polygon, and label each building with your calculated average building heights. Use an image for the background, either one of the high resolution images on the class drive, or one of the WMS layers. Include the usual title, legend, scale, and other standard map elements. Do this same exercise for the trees in your project area. Again, create and turn in a second map of your results, with an image background, the tree polygons, labeled by height. 11

Introduction to LiDAR

Introduction to LiDAR Introduction to LiDAR Our goals here are to introduce you to LiDAR data, to show you how to download it for an area of interest, and to better understand the data and uses through some simple manipulations.

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

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

Lecture 23 - LiDAR. GEOL 452/552 - GIS for Geoscientists I. Scanning Lidar. 30 m DEM. Lidar representations:

Lecture 23 - LiDAR. GEOL 452/552 - GIS for Geoscientists I. Scanning Lidar. 30 m DEM. Lidar representations: GEOL 452/552 - GIS for Geoscientists I Lecture 23 - LiDAR LiDAR - some background (thanks to Chris Kahle, DNR) Converting Lidar point data to a raster Look at online lidar data for Iowa (1m hillshaded)

More information

Lab 3: Digitizing in ArcMap

Lab 3: Digitizing in ArcMap Lab 3: Digitizing in ArcMap What You ll Learn: In this Lab you ll be introduced to basic digitizing techniques using ArcMap. You should read Chapter 4 in the GIS Fundamentals textbook before starting this

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

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

Lab 3: Digitizing in ArcGIS Pro

Lab 3: Digitizing in ArcGIS Pro Lab 3: Digitizing in ArcGIS Pro What You ll Learn: In this Lab you ll be introduced to basic digitizing techniques using ArcGIS Pro. You should read Chapter 4 in the GIS Fundamentals textbook before starting

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

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

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

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

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

Using LIDAR to Design Embankments in ArcGIS. Written by Scott Ralston U.S. Fish & Wildlife Service Windom Wetland Management District

Using LIDAR to Design Embankments in ArcGIS. Written by Scott Ralston U.S. Fish & Wildlife Service Windom Wetland Management District Using LIDAR to Design Embankments in ArcGIS Written by Scott Ralston U.S. Fish & Wildlife Service Windom Wetland Management District This tutorial covers the basics of how to design a dike, embankment

More information

Exercise 4: Extracting Information from DEMs in ArcMap

Exercise 4: Extracting Information from DEMs in ArcMap Exercise 4: Extracting Information from DEMs in ArcMap Introduction This exercise covers sample activities for extracting information from DEMs in ArcMap. Topics include point and profile queries and surface

More information

MODULE 1 BASIC LIDAR TECHNIQUES

MODULE 1 BASIC LIDAR TECHNIQUES MODULE SCENARIO One of the first tasks a geographic information systems (GIS) department using lidar data should perform is to check the quality of the data delivered by the data provider. The department

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

This will display various panes in a window.

This will display various panes in a window. Map Map projections in ArcMap can be a bit confusing, because the program often automatically reprojects data for display, and there are a ways to permanently project data to new data sets. This describes

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

USING CCCR S AERIAL PHOTOGRAPHY IN YOUR OWN GIS

USING CCCR S AERIAL PHOTOGRAPHY IN YOUR OWN GIS USING CCCR S AERIAL PHOTOGRAPHY IN YOUR OWN GIS Background: In 2006, the Centre for Catchment and Coastal Research purchased 40 cm resolution aerial photography for the whole of Wales. This product was

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

I CALCULATIONS WITHIN AN ATTRIBUTE TABLE

I CALCULATIONS WITHIN AN ATTRIBUTE TABLE Geology & Geophysics REU GPS/GIS 1-day workshop handout #4: Working with data in ArcGIS You will create a raster DEM by interpolating contour data, create a shaded relief image, and pull data out of the

More information

EXERCISE 2: GETTING STARTED WITH FUSION

EXERCISE 2: GETTING STARTED WITH FUSION Document Updated: May, 2010 Fusion v2.8 Introduction In this exercise, you ll be using the fully-prepared example data to explore the basics of FUSION. Prerequisites Successful completion of Exercise 1

More information

GeoEarthScope NoCAL San Andreas System LiDAR pre computed DEM tutorial

GeoEarthScope NoCAL San Andreas System LiDAR pre computed DEM tutorial GeoEarthScope NoCAL San Andreas System LiDAR pre computed DEM tutorial J Ramón Arrowsmith Chris Crosby School of Earth and Space Exploration Arizona State University ramon.arrowsmith@asu.edu http://lidar.asu.edu

More information

Converting AutoCAD Map 2002 Projects to ArcGIS

Converting AutoCAD Map 2002 Projects to ArcGIS Introduction This document outlines the procedures necessary for converting an AutoCAD Map drawing containing topologies to ArcGIS version 9.x and higher. This includes the export of polygon and network

More information

Lidar and GIS: Applications and Examples. Dan Hedges Clayton Crawford

Lidar and GIS: Applications and Examples. Dan Hedges Clayton Crawford Lidar and GIS: Applications and Examples Dan Hedges Clayton Crawford Outline Data structures, tools, and workflows Assessing lidar point coverage and sample density Creating raster DEMs and DSMs Data area

More information

Point Cloud Classification

Point Cloud Classification Point Cloud Classification Introduction VRMesh provides a powerful point cloud classification and feature extraction solution. It automatically classifies vegetation, building roofs, and ground points.

More information

START>PROGRAMS>ARCGIS>

START>PROGRAMS>ARCGIS> Department of Urban Studies and Planning Spring 2006 Department of Architecture Site and Urban Systems Planning 11.304J / 4.255J GIS EXERCISE 2 Objectives: To generate the following maps using ArcGIS Software:

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

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

Creating raster DEMs and DSMs from large lidar point collections. Summary. Coming up with a plan. Using the Point To Raster geoprocessing tool

Creating raster DEMs and DSMs from large lidar point collections. Summary. Coming up with a plan. Using the Point To Raster geoprocessing tool Page 1 of 5 Creating raster DEMs and DSMs from large lidar point collections ArcGIS 10 Summary Raster, or gridded, elevation models are one of the most common GIS data types. They can be used in many ways

More information

OPTIONAL EXERCISE 2 Creating a Fusion Project Part B

OPTIONAL EXERCISE 2 Creating a Fusion Project Part B OPTIONAL EXERCISE 2 Creating a Fusion Project Part B Objective Last Updated: April, 2016 Version: Fusion 3.50 This exercise continues with the creation of a Fusion project. In the last exercise you: examined

More information

The Reference Library Generating Low Confidence Polygons

The Reference Library Generating Low Confidence Polygons GeoCue Support Team In the new ASPRS Positional Accuracy Standards for Digital Geospatial Data, low confidence areas within LIDAR data are defined to be where the bare earth model might not meet the overall

More information

Lab 3. Introduction to GMT and Digitizing in ArcGIS

Lab 3. Introduction to GMT and Digitizing in ArcGIS Lab 3. Introduction to GMT and Digitizing in ArcGIS GEY 430/630 GIS Theory and Application Purpose: To learn how to use GMT to make basic maps and learn basic digitizing techniques when collecting data

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

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

QGIS Tutorials Documentation

QGIS Tutorials Documentation QGIS Tutorials Documentation Release 0.1 Nathaniel Roth November 30, 2016 Contents 1 Installation 3 1.1 Basic Installation............................................. 3 1.2 Advanced Installation..........................................

More information

Making ArcGIS Work for You. Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO

Making ArcGIS Work for You. Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO Making ArcGIS Work for You Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO 1 Topics Using ArcMap beyond the Toolkit buttons GIS data formats Attributes and what you can do with them Calculating Acres

More information

GIS Tools for Hydrology and Hydraulics

GIS Tools for Hydrology and Hydraulics 1 OUTLINE GIS Tools for Hydrology and Hydraulics INTRODUCTION Good afternoon! Welcome and thanks for coming. I once heard GIS described as a high-end Swiss Army knife: lots of tools in one little package

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

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

GEOGRAPHIC INFORMATION SYSTEMS Lecture 25: 3D Analyst

GEOGRAPHIC INFORMATION SYSTEMS Lecture 25: 3D Analyst GEOGRAPHIC INFORMATION SYSTEMS Lecture 25: 3D Analyst 3D Analyst - 3D Analyst is an ArcGIS extension designed to work with TIN data (triangulated irregular network) - many of the tools in 3D Analyst also

More information

An Introduction to Using Lidar with ArcGIS and 3D Analyst

An Introduction to Using Lidar with ArcGIS and 3D Analyst FedGIS Conference February 24 25, 2016 Washington, DC An Introduction to Using Lidar with ArcGIS and 3D Analyst Jim Michel Outline Lidar Intro Lidar Management Las files Laz, zlas, conversion tools Las

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

Getting Started With LP360

Getting Started With LP360 Getting Started With LP360 12/22/2015 1 Contents What is LP360?... 3 System Requirements... 3 Installing LP360... 4 How to Enable the LP360 Extension... 4 How to Display the LP360 Toolbar... 4 How to Import

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

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

Tutorial 1: Downloading elevation data

Tutorial 1: Downloading elevation data Tutorial 1: Downloading elevation data Objectives In this exercise you will learn how to acquire elevation data from the website OpenTopography.org, project the dataset into a UTM coordinate system, and

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

v Working with Rasters SMS 12.1 Tutorial Requirements Raster Module Map Module Mesh Module Time minutes Prerequisites Overview Tutorial

v Working with Rasters SMS 12.1 Tutorial Requirements Raster Module Map Module Mesh Module Time minutes Prerequisites Overview Tutorial v. 12.1 SMS 12.1 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 Volume and Extent of the Lake Created by the Bridge of the Gods, Colombia River

The Volume and Extent of the Lake Created by the Bridge of the Gods, Colombia River Rachel Markoff 12/1/2011 GEO 327G/386G Term Project The Volume and Extent of the Lake Created by the Bridge of the Gods, Colombia River 1. Introduction The Bonneville Landslide occurred on the Colombia

More information

Files Used in this Tutorial

Files Used in this Tutorial Generate Point Clouds and DSM Tutorial This tutorial shows how to generate point clouds and a digital surface model (DSM) from IKONOS satellite stereo imagery. You will view the resulting point clouds

More information

Table of Contents. 1. Prepare Data for Input. CVEN 2012 Intro Geomatics Final Project Help Using ArcGIS

Table of Contents. 1. Prepare Data for Input. CVEN 2012 Intro Geomatics Final Project Help Using ArcGIS Table of Contents 1. Prepare Data for Input... 1 2. ArcMap Preliminaries... 2 3. Adding the Point Data... 2 4. Set Map Units... 3 5. Styling Point Data: Symbology... 4 6. Styling Point Data: Labels...

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2011 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

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

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

_Tutorials. Arcmap. Linking additional files outside from Geodata

_Tutorials. Arcmap. Linking additional files outside from Geodata _Tutorials Arcmap Linking additional files outside from Geodata 2017 Sourcing the Data (Option 1): Extracting Data from Auckland Council GIS P1 First you want to get onto the Auckland Council GIS website

More information

MARS v Release Notes Revised: May 23, 2018 (Builds and )

MARS v Release Notes Revised: May 23, 2018 (Builds and ) MARS v2018.0 Release Notes Revised: May 23, 2018 (Builds 8302.01 8302.18 and 8350.00 8352.00) Contents New Features:... 2 Enhancements:... 6 List of Bug Fixes... 13 1 New Features: LAS Up-Conversion prompts

More information

GIS Workshop Spring 2016

GIS Workshop Spring 2016 1/ 14 GIS Geographic Information System. An integrated collection of computer software and data used to view and manage information about geographic places, analyze spatial relationships, and model spatial

More information

GIS OPERATION MANUAL

GIS OPERATION MANUAL GIS OPERATION MANUAL 1. Computer System Description Hardware Make Compaq Presario 5004 CPU AMD Athlon 1.1 Ghz Main Memory 640MB CD-ROM 52 X CD-RW 8 X HD 57GB Monitor 19 inch Video Adapter 16 Mb Nvidia

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

Lecture 21 - Chapter 8 (Raster Analysis, part2)

Lecture 21 - Chapter 8 (Raster Analysis, part2) GEOL 452/552 - GIS for Geoscientists I Lecture 21 - Chapter 8 (Raster Analysis, part2) Today: Digital Elevation Models (DEMs), Topographic functions (surface analysis): slope, aspect hillshade, viewshed,

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

Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data

Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data Imagine for a moment that digital cartographic databases were a perfect analog of the paper map. Once you digitized

More information

Exercise 4: Import Tabular GPS Data and Digitizing

Exercise 4: Import Tabular GPS Data and Digitizing Exercise 4: Import Tabular GPS Data and Digitizing You can create NEW GIS data layers by digitizing on screen with an aerial photograph or other image as a back-drop. You can also digitize using imported

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

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas.

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. GIS LAB 1 Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. ArcGIS offers some advantages for novice users. The graphical user interface is similar to many Windows packages

More information

Alaska Department of Transportation Roads to Resources Project LiDAR & Imagery Quality Assurance Report Juneau Access South Corridor

Alaska Department of Transportation Roads to Resources Project LiDAR & Imagery Quality Assurance Report Juneau Access South Corridor Alaska Department of Transportation Roads to Resources Project LiDAR & Imagery Quality Assurance Report Juneau Access South Corridor Written by Rick Guritz Alaska Satellite Facility Nov. 24, 2015 Contents

More information

EXERCISE 7: CREATING A FUSION PROJECT PART 2

EXERCISE 7: CREATING A FUSION PROJECT PART 2 Document Updated: January, 2009 Fusion ver2.65 Important: leave the symbol set to none. Introduction This exercise continues with the creation of a Fusion project. In the last exercise you: examined the

More information

Data for this exercise are located in the L1 subdirectory or the class web page. Videos for this exercise are located in the class web page.

Data for this exercise are located in the L1 subdirectory or the class web page. Videos for this exercise are located in the class web page. Lesson 1: What You ll Learn: -Start ArcMap -Create a new map -Add data layers -Pan and zoom -Change data symbology -Change display properties -Set relative paths -Add layers to features -Select data -Measure

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

Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS

Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS This tutorial will introduce you to the following: Websites where you may browse to find geospatial information Identifying spatial data, usable

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

The GIS Spatial Data Model

The GIS Spatial Data Model The GIS Spatial Data Model Introduction: Spatial data are what drive a GIS. Every piece of functionality that makes a GIS separate from another analytical environment is rooted in the spatially explicit

More information

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment This activity is designed to introduce you to the Geography Lab and to the ArcMap software within the lab environment. Before

More information

Lab 1: Introduction to ArcGIS

Lab 1: Introduction to ArcGIS Lab 1: Introduction to ArcGIS Objectives In this lab you will: 1) Learn the basics of the software package we will be using for the remainder of the semester, and 2) Discover the role that climate and

More information

GPS TO GIS EXERCISE (30 PTS)

GPS TO GIS EXERCISE (30 PTS) GPS TO GIS EXERCISE (30 PTS) This exercise will allow you to demonstrate your cumulative knowledge of using a GPS receiver to collect data with locational information, downloading this data to a desktop

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

Importing GPS points and Hyperlinking images.

Importing GPS points and Hyperlinking images. Geol 3050 GIS for Geologists Exercise 15 Exercise 15 Making a Virtual Fieldtrip: Importing GPS points and Hyperlinking images. Due: Thursday, March 22. Goal: A) Get familiar with importing GPS points and

More information

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center In this workshop, we will cover the basics of working with spatial data, as well as its main uses for archaeology.

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

In this lab, you will create two maps. One map will show two different projections of the same data.

In this lab, you will create two maps. One map will show two different projections of the same data. Projection Exercise Part 2 of 1.963 Lab for 9/27/04 Introduction In this exercise, you will work with projections, by re-projecting a grid dataset from one projection into another. You will create a map

More information

WMS 10.1 Tutorial Hydraulics and Floodplain Modeling Simplified Dam Break Learn how to run a dam break simulation and delineate its floodplain

WMS 10.1 Tutorial Hydraulics and Floodplain Modeling Simplified Dam Break Learn how to run a dam break simulation and delineate its floodplain v. 10.1 WMS 10.1 Tutorial Hydraulics and Floodplain Modeling Simplified Dam Break Learn how to run a dam break simulation and delineate its floodplain Objectives Setup a conceptual model of stream centerlines

More information

WMS 8.4 Tutorial Hydraulics and Floodplain Modeling Simplified Dam Break Learn how to run a dam break simulation and delineate its floodplain

WMS 8.4 Tutorial Hydraulics and Floodplain Modeling Simplified Dam Break Learn how to run a dam break simulation and delineate its floodplain v. 8.4 WMS 8.4 Tutorial Hydraulics and Floodplain Modeling Simplified Dam Break Learn how to run a dam break simulation and delineate its floodplain Objectives Setup a conceptual model of stream centerlines

More information

Municipal Projects in Cambridge Using a LiDAR Dataset. NEURISA Day 2012 Sturbridge, MA

Municipal Projects in Cambridge Using a LiDAR Dataset. NEURISA Day 2012 Sturbridge, MA Municipal Projects in Cambridge Using a LiDAR Dataset NEURISA Day 2012 Sturbridge, MA October 15, 2012 Jeff Amero, GIS Manager, City of Cambridge Presentation Overview Background on the LiDAR dataset Solar

More information

Lecture 06. Raster and Vector Data Models. Part (1) Common Data Models. Raster. Vector. Points. Points. ( x,y ) Area. Area Line.

Lecture 06. Raster and Vector Data Models. Part (1) Common Data Models. Raster. Vector. Points. Points. ( x,y ) Area. Area Line. Lecture 06 Raster and Vector Data Models Part (1) 1 Common Data Models Vector Raster Y Points Points ( x,y ) Line Area Line Area 2 X 1 3 Raster uses a grid cell structure Vector is more like a drawn map

More information

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

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

In this exercise we will:

In this exercise we will: Intro to GIS Exercise #3 TOC Data frame visual hierarchy / Select by Attribute / Select by Location / Geoprocessing IUP Dept. of Geography and Regional Planning Dr. Richard Hoch Please prepare answers

More information

Tutorial 4 - Attribute data in ArcGIS

Tutorial 4 - Attribute data in ArcGIS Tutorial 4 - Attribute data in ArcGIS COPY the Lab4 archive to your server folder and unpack it. The objectives of this tutorial include: Understand how ArcGIS stores and structures attribute data Learn

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

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

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

Steps for Modeling a Proposed New Reservoir in GIS

Steps for Modeling a Proposed New Reservoir in GIS Steps for Modeling a Proposed New Reservoir in GIS Requirements: ArcGIS ArcMap, ArcScene, Spatial Analyst, and 3D Analyst There s a new reservoir proposed for Right Hand Fork in Logan Canyon. I wanted

More information

Final project: Lecture 21 - Chapter 8 (Raster Analysis, part2) GEOL 452/552 - GIS for Geoscientists I

Final project: Lecture 21 - Chapter 8 (Raster Analysis, part2) GEOL 452/552 - GIS for Geoscientists I GEOL 452/552 - GIS for Geoscientists I Lecture 21 - Chapter 8 (Raster Analysis, part2) Talk about class project (copy follow_along_data\ch8a_class_ex into U:\ArcGIS\ if needed) Catch up with lecture 20

More information

Minnesota Department of Natural Resources ArcView Utilities Extension User s Guide

Minnesota Department of Natural Resources ArcView Utilities Extension User s Guide Introduction This document describes the functionality and use of the ArcView Utilities extension for the ArcView desktop GIS software. These tools were developed out of the need for additional geoprocessing

More information

How to Align a Non- Georeferenced Image to an Existing Geographic Layer or Georeferenced Image

How to Align a Non- Georeferenced Image to an Existing Geographic Layer or Georeferenced Image How to Align a Non- Georeferenced Image to an Existing Geographic Layer or Georeferenced Image Written by Barbara M. Parmenter, revised 14 October 2011 You can align, or georeference, scanned maps to existing

More information

The following sections provide step by step guidance on using the Toe Extractor. 2.1 Creating an Instance of the Toe Extractor Point Cloud Task

The following sections provide step by step guidance on using the Toe Extractor. 2.1 Creating an Instance of the Toe Extractor Point Cloud Task , Tips, and Workflows LP360, versions 2015.1 and above l support@lp360.com 11/8/2016 Revision 1.0 1 Introduction LP360 includes a Point Cloud Task (PCT) that will automatically digitize the toe of a clean

More information

Map Library ArcView Version 1 02/20/03 Page 1 of 12. ArcView GIS

Map Library ArcView Version 1 02/20/03 Page 1 of 12. ArcView GIS Map Library ArcView Version 1 02/20/03 Page 1 of 12 1. Introduction 1 ArcView GIS ArcView is the most popular desktop GIS analysis and map presentation software package.. With ArcView GIS you can create

More information

Building Vector Layers

Building Vector Layers Building Vector Layers in QGIS Introduction: Spatially referenced data can be separated into two categories, raster and vector data. This week, we focus on the building of vector features. Vector shapefiles

More information