Operations. What Do I Need? Scan Filter

Size: px
Start display at page:

Download "Operations. What Do I Need? Scan Filter"

Transcription

1 Smooth Anomalous Values in a DEM Reduce Noise and Speckling in a Satellite Image Smooth Anomalous Values in Ordinal Data (Nearest Neighbour Interpolation) Smooth Anomalous Values in Nominal Data (Nearest Neighbour Interpolation) Operations What Do I Need? Scan Filter DEMs with Patterns, Stepping, and Anomalies It is common for DEMs (Digital Elevation Models) to have anomalous values. Most DEMs are generated by interpolation from spot height and/or contour elevation information. Interpolation algorithms often generate block patterns and data spikes and pits that should be smoothed out before the DEM can be used in terrain analysis. This is particularly important for drainage and viewshed modelling. Noisy or Speckled Remote Sensing Imagery Satellite imagery often contains anomalous values. Instrument noise, transmission errors, and electromagnetic interference frequently degrade the quality of remote sensing imagery. Data smoothing can remove or reduce anomalous cell values and despeckle degraded data. Smoothing Ordinal and Nominal Data Continuous Interval and Ratio type data map layers such as DEMs (Digital Elevation Models) and remote sensing imagery can be smoothed by a mean, or averaging, filter. Anomalous values are smoothed out by averaging the surrounding values and applying that average to the cell containing the anomalous value (this is called nearest neighbour averaging); however, the weighted mean filter is not suitable for Ordinal or Nominal data. If you have a map layer of cells to which you have applied a ranking scheme and there are some cells that have not been assigned a rank or have had a rank misassigned, these anomalous values can be smoothed by assigning a new value based on the median nearest neighbour value. HD-SMT-1

2 If you have a map layer of classified data, such as a remote sensing image to which you have applied a classification scheme, and there are some misclassified cells, these values can be interpolated based on the most common, nearest neighbour value. Example Smoothing Anomalous Values in a DEM Upon first inspection, the DEM (Digital Elevation Model) named Pine appears to be acceptable. However, after the generation of a shaded relief model, an anomalous pattern will be revealed in the top left quadrant. Smoothing the DEM will reduce the effects of the pattern that was generated by the USGS s (United States Geological Survey) elevation interpolation algorithm: For details on how to generate a shaded relief model, please refer to the document: How Do I Create a Shaded Relief Map from a DEM. The process will be summarized only here. Before generating the shaded relief model you must create a kernel for the Filter operation. Use the New Map command from the File menu to create HD-SMT-2

3 a 3 cell by 3 cell map layer. Assign the values as shown in the sample below and save the map layer using the name Shading Kernel: Once you have saved the kernel, choose Filter from the Operations menu. In the Filter dialog box specify the DEM in the Map drop-down list and the map layer Shading Kernel in the Kernel drop-down list. Select the Low Pass filter and click on OK: If you were to perform this operation from the Script window the statement would be: Shaded Unsmoothed = Filter Pine Kernel Shading Kernel LowPass; This operation produces a shaded relief model of the Pine DEM with an apparent light source from the Northwest. As the figure below shows, there HD-SMT-3

4 is a slight blockiness in the upper left quadrant caused by the USGS interpolation algorithm that was used to generate the DEM: To reduce or eliminate this problem, smooth the DEM before you use it for analysis or to generate a shaded relief model. The Scan operation is used to smooth anomalous values. If you wish to apply a weighted average method of smoothing, use the Filter operation. The Scan operation uses a moving window to reassign values. The larger the scanning window the greater the number of values that will contribute to the assignment of new values. The default window size is 3 cells in HD-SMT-4

5 diameter. A test on the DEM proved this to be too small to remove the grid pattern, so a larger 5 cell diameter window is specified: If you were to perform this operation from the Script window the statement would be: Pine Smoothed = Scan Pine Within 5 Average; HD-SMT-5

6 This operation smooths the values in the Pine DEM. Anomalous, high frequency changes are reduced while preserving the overall trends in elevation variation: This smoothed DEM is now ready for analysis or to generate a shaded relief map layer. Apply the Filter operation with the kernel Shading Kernel to the smoothed DEM: If you were to perform this operation from the Script window the statement would be: Shaded Smoothed = Filter Pine Smoothed Kernel Shading Kernel LowPass; HD-SMT-6

7 This operation produces a shaded relief model of the Pine DEM lit from the Northwest. Compare the results of the unsmoothed and the smoothed DEM: Smoothing an Extreme Case of Artifacting in a USGS DEM From time to time you may encounter a DEM (Digital Elevation Model) with extreme artifacting. This can include blocky segments, banding, and extremely anomalous values. Low quality source data and poor seaming are typically the causes of artifacting. HD-SMT-7

8 The DEM map layer named Hope Valley, RI appears to have some minor banding and artifacting: HD-SMT-8

9 However, using this DEM to generate a shaded relief model reveals a large number of artifacts over the whole map layer, including blockiness, banding, and spiky values: HD-SMT-9

10 To make an effective shaded relief model or to use this DEM in drainage and viewshed analysis, these artifacts must be reduced or removed. The following script will incrementally remove the anomalies and produce a higher quality DEM and shaded relief model (Note: the kernel named Shading Kernel is the same kernel as was used in the previous example): Smooth1 = Scan Hope Valley, RI Average Within 7; Smooth2 = Scan Smooth1 Average Within 5; Smooth3 = Scan Smooth2 Average Within 3; Hope Final Shaded Relief = Filter Smooth3 Kernel Shading Kernel LowPass; Save Hope Final Shaded Relief ; HD-SMT-10

11 Example Reduce Noise and Speckling in a Satellite Image There are many factors that can contribute to the degradation of a remote sensing image. Generally it is recommended that you reject images that are badly degraded; however, there are times when it is necessary to use whatever image is available, regardless of quality. For example, a noisy image may be the only image available for a time sensitive study. Given below are two SPOT images of the Highway 401 and Wellington Road interchange in London, Ontario, Canada. These images both depict green wavelengths. The image on the right is contaminated by signal degradation; however, it is the only image available for the particular day of interest. This image must be cleaned up as much as possible so that it can be used in a false colour composite of this area that will be generated using the Merge operation: You can use MFworks to smooth out noise in one of two ways, either by applying the Filter Low Pass operation or the Scan Average operation. Each operation has certain advantages. The Filter operation allows you to specify the default or a custom made convolving kernel. If you are less familiar with remote sensing image processing you may want to avoid the Filter operation and, instead, use the Scan Average operation. The Scan Average operation allows you to apply a standard mean filter to your data. You can specify different window sizes to increase or decrease the set of values from which the average value will be calculated. Both the Filter operation and the Scan operation will reduce, but not completely remove, the effects of degraded data. Below are three possible ways to reduce the noise in the XS1+P image. The first is the Filter Low Pass operation using the default kernel. Next is the Scan Average operation using the default 3 cell diameter scanning window. Last is the Scan Average operation using a 5 cell diameter scanning HD-SMT-11

12 window. For your own images, experiment with different diameter windows. Those users familiar with remote sensing image processing can create their own kernels for the Filter Low Pass operation. This Filter dialog box displays the default settings for the Filter Low Pass operation: If you were performing this operation from the Script window the statement would be: XS1+P Filter LowPass = Filter XS1+P (Noisy) LowPass; HD-SMT-12

13 This Scan dialog box displays the default settings for the Scan Average operation: If you were performing this operation from the Script window the statement would be: XS1+P Scan Avg 5 = Scan XS1+P (Noisy) Within 5 Average; This Scan dialog box displays the settings for the Scan Average operation with a 5 cell diameter Window size specified: HD-SMT-13

14 Each of these operations produces slightly different results. The larger the scanning window, the more smoothed and blurred the image becomes. You will have to decide for yourself which image best suits your purpose: Example Smoothing Anomalous Values in Ordinal Data by Nearest Neighbour Interpolation If you have anomalous or missing values in Ordinal (ranked) type data, filling them in by averaging does not make sense. They should be assigned actual values from the data set rather than the intermediate values that would result from averaging. To interpolate missing values or remove anomalous values in ordinal data, use the Scan Median operation. HD-SMT-14

15 The map layer Ranked Suitability for Agri was generated by combining remote sensing imagery, soil map layers, drainage map layers, and land use map layers. Due to anomalies in the remote sensing data, some cells were not ranked and remained as VOID : To assign a ranking to these cells, the following Scan Median operation will be used: If you were to perform this operation from the Script window the statement would be: HD-SMT-15

16 Smoothed Ranked Suitability = Scan Ranked Suitability for Agri Within 3 Median; This Scan operation assigns values to the unassigned cells based on the median value of the nearest neighbour cells: Example Smoothing Anomalous Values in Nominal Data by Nearest Neighbour Interpolation If you have anomalous or missing values in Nominal/Categorical (e.g., classified satellite data) data, filling them in by averaging will not yield desirable results. They should be assigned actual values from the data set rather than the intermediate values that would result from averaging. To interpolate missing values or remove anomalous values in Nominal data, use the Scan Majority operation. The map layer Chatham Classified was generated by performing an unsupervised classification on remote sensing imagery. Some Forest cells HD-SMT-16

17 within the forest patches were not properly classified and some Non-Forest cells were classified as Forest: HD-SMT-17

18 To reclassify these cells based on the most common value of the four nearest neighbours, the following Scan Majority operation will be used: If you were to perform this operation from the Script window the statement would be: Chatham Scanned 3 Maj = Scan Chatham Classified Within 3 Majority; HD-SMT-18

19 This Scan operation assigns values to cells based on the highest, most common value of the nearest neighbour cells: If you want to produce a map that shows you which cells were reassigned and which remained unchanged add the scanned map layer to the original map layer. You must do this in the Script window. Select New Script from the Windows menu and enter the following statement in the Script window: Chatham Changed and Unchanged = Chatham Scanned 3 Maj + Chatham Classified ; Adding these two map layers together produces a map layer that reveals those cells that changed as a result of the Scan operation. The majority of HD-SMT-19

20 changed cells, those with the value 1, were forest and non-forest cells that were isolated within patches of the other coverage type: HD-SMT-20

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

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

Measure the Perimeter of Polygons Over a Surface. Operations. What Do I Need?

Measure the Perimeter of Polygons Over a Surface. Operations. What Do I Need? Measure the Perimeter of Polygons Over a Surface Operations What Do I Need? Incremental Frontage Score To measure the perimeter of polygons over a surface you need to have two input map layers. The first

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

Classify Multi-Spectral Data Classify Geologic Terrains on Venus Apply Multi-Variate Statistics

Classify Multi-Spectral Data Classify Geologic Terrains on Venus Apply Multi-Variate Statistics Classify Multi-Spectral Data Classify Geologic Terrains on Venus Apply Multi-Variate Statistics Operations What Do I Need? Classify Merge Combine Cross Scan Score Warp Respace Cover Subscene Rotate Translators

More information

Interpolate Continuous Data From Non-Continuous Data. Examples. Dialog Box

Interpolate Continuous Data From Non-Continuous Data. Examples. Dialog Box Interpolate Continuous Data From Non-Continuous Data Examples Dialog Box Interpolating Continuous Elevation Data From Contours Interpolating Continuous Bathymetric Data Using a Mask Map Layer Using the

More information

Neighbourhood Operations Specific Theory

Neighbourhood Operations Specific Theory Neighbourhood Operations Specific Theory Neighbourhood operations are a method of analysing data in a GIS environment. They are especially important when a situation requires the analysis of relationships

More information

L7 Raster Algorithms

L7 Raster Algorithms L7 Raster Algorithms NGEN6(TEK23) Algorithms in Geographical Information Systems by: Abdulghani Hasan, updated Nov 216 by Per-Ola Olsson Background Store and analyze the geographic information: Raster

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

DIGITAL IMAGE ANALYSIS. Image Classification: Object-based Classification

DIGITAL IMAGE ANALYSIS. Image Classification: Object-based Classification DIGITAL IMAGE ANALYSIS Image Classification: Object-based Classification Image classification Quantitative analysis used to automate the identification of features Spectral pattern recognition Unsupervised

More information

University of Technology Building & Construction Department / Remote Sensing & GIS lecture

University of Technology Building & Construction Department / Remote Sensing & GIS lecture 5. Corrections 5.1 Introduction 5.2 Radiometric Correction 5.3 Geometric corrections 5.3.1 Systematic distortions 5.3.2 Nonsystematic distortions 5.4 Image Rectification 5.5 Ground Control Points (GCPs)

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

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

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

Reality Check: Processing LiDAR Data. A story of data, more data and some more data

Reality Check: Processing LiDAR Data. A story of data, more data and some more data Reality Check: Processing LiDAR Data A story of data, more data and some more data Red River of the North Red River of the North Red River of the North Red River of the North Introduction and Background

More information

product description product capabilities

product description product capabilities product description Geosoft s Airborne Geophy s- ics application for the Oasis montaj software platform provides field geophysicists with the ability to process, filter, grid, and map data from airborne

More information

Generate Digital Elevation Models Using Laser Altimetry (LIDAR) Data

Generate Digital Elevation Models Using Laser Altimetry (LIDAR) Data Generate Digital Elevation Models Using Laser Altimetry (LIDAR) Data Literature Survey Christopher Weed October 2000 Abstract Laser altimetry (LIDAR) data must be processed to generate a digital elevation

More information

DIGITAL TERRAIN MODELS

DIGITAL TERRAIN MODELS DIGITAL TERRAIN MODELS 1 Digital Terrain Models Dr. Mohsen Mostafa Hassan Badawy Remote Sensing Center GENERAL: A Digital Terrain Models (DTM) is defined as the digital representation of the spatial distribution

More information

Exporting to a 24-bit Colour BMP

Exporting to a 24-bit Colour BMP Importing a BMP Exporting to a 24-bit Colour BMP File Type: BMP (Windows Bitmap) Directions: BMPMF Details: BMP (Windows Bitmap) is a standard graphic file format for Windows and DOS based platforms.

More information

Tutorial (Intermediate level): Dense Cloud Classification and DTM generation with Agisoft PhotoScan Pro 1.1

Tutorial (Intermediate level): Dense Cloud Classification and DTM generation with Agisoft PhotoScan Pro 1.1 Tutorial (Intermediate level): Dense Cloud Classification and DTM generation with Agisoft PhotoScan Pro 1.1 This tutorial illustrates how to perform dense point cloud classification in manual and automatic

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

Watershed Modeling With DEMs: The Rest of the Story

Watershed Modeling With DEMs: The Rest of the Story Watershed Modeling With DEMs: The Rest of the Story Lesson 7 7-1 DEM Delineation: The Rest of the Story DEM Fill for some cases when merging DEMs Delineate Basins Wizard Smoothing boundaries Representing

More information

Topographic Survey. Topographic Survey. Topographic Survey. Topographic Survey. CIVL 1101 Surveying - Introduction to Topographic Mapping 1/7

Topographic Survey. Topographic Survey. Topographic Survey. Topographic Survey. CIVL 1101 Surveying - Introduction to Topographic Mapping 1/7 IVL 1101 Surveying - Introduction to Topographic Mapping 1/7 Introduction Topography - defined as the shape or configuration or relief or three dimensional quality of a surface Topography maps are very

More information

GIS: Raster Analysis

GIS: Raster Analysis GIS: Raster Analysis Ts (K) High : 311 Low : 299 500 Meters Albedo G / Rn High : 0.35 High : 0.50 Low : 0.03 Low : 0.10 1 Raster analysis: Outline Raster analysis applications Map algebra Local functions

More information

Esri International User Conference. July San Diego Convention Center. Lidar Solutions. Clayton Crawford

Esri International User Conference. July San Diego Convention Center. Lidar Solutions. Clayton Crawford Esri International User Conference July 23 27 San Diego Convention Center Lidar Solutions Clayton Crawford Outline Data structures, tools, and workflows Assessing lidar point coverage and sample density

More information

NEXTMap World 10 Digital Elevation Model

NEXTMap World 10 Digital Elevation Model NEXTMap Digital Elevation Model Intermap Technologies, Inc. 8310 South Valley Highway, Suite 400 Englewood, CO 80112 10012015 NEXTMap (top) provides an improvement in vertical accuracy and brings out greater

More information

Live (2.5D) DEM Editing Geomatica 2015 Tutorial

Live (2.5D) DEM Editing Geomatica 2015 Tutorial Live (2.5D) DEM Editing Geomatica 2015 Tutorial The DEM Editing tool is a quick and easy tool created to smooth out irregularities and create a more accurate model, and in turn, generate more accurate

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

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

v SMS Tutorials Working with Rasters Prerequisites Requirements Time Objectives

v SMS Tutorials Working with Rasters Prerequisites Requirements Time Objectives v. 12.2 SMS 12.2 Tutorial Objectives Learn how to import a Raster, view elevations at individual points, change display options for multiple views of the data, show the 2D profile plots, and interpolate

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

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 9. Raster Data Analysis. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

Lecture 9. Raster Data Analysis. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Lecture 9 Raster Data Analysis Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Raster Data Model The GIS raster data model represents datasets in which square

More information

Terrain Analysis. Using QGIS and SAGA

Terrain Analysis. Using QGIS and SAGA Terrain Analysis Using QGIS and SAGA Tutorial ID: IGET_RS_010 This tutorial has been developed by BVIEER as part of the IGET web portal intended to provide easy access to geospatial education. This tutorial

More information

Contents of Lecture. Surface (Terrain) Data Models. Terrain Surface Representation. Sampling in Surface Model DEM

Contents of Lecture. Surface (Terrain) Data Models. Terrain Surface Representation. Sampling in Surface Model DEM Lecture 13: Advanced Data Models: Terrain mapping and Analysis Contents of Lecture Surface Data Models DEM GRID Model TIN Model Visibility Analysis Geography 373 Spring, 2006 Changjoo Kim 11/29/2006 1

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Merging Overlapping Files into One 2D Grid Often several files (grids or data) covering adjacent and overlapping areas must be combined into one 2D Grid.

More information

3D Terrain Modelling of the Amyntaio Ptolemais Basin

3D Terrain Modelling of the Amyntaio Ptolemais Basin 2nd International Workshop in Geoenvironment and 1 3D Terrain Modelling of the Amyntaio Ptolemais Basin G. Argyris, I. Kapageridis and A. Triantafyllou Department of Geotechnology and Environmental Engineering,

More information

Terrain Modeling and Mapping for Telecom Network Installation Using Scanning Technology. Maziana Muhamad

Terrain Modeling and Mapping for Telecom Network Installation Using Scanning Technology. Maziana Muhamad Terrain Modeling and Mapping for Telecom Network Installation Using Scanning Technology Maziana Muhamad Summarising LiDAR (Airborne Laser Scanning) LiDAR is a reliable survey technique, capable of: acquiring

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

Digital Elevation Models (DEM)

Digital Elevation Models (DEM) Digital Elevation Models (DEM) Digital representation of the terrain surface also referred to as Digital Terrain Models (DTM) Digital Elevation Models (DEM) How has relief depiction changed with digital

More information

NEXTMap World 30 Digital Surface Model

NEXTMap World 30 Digital Surface Model NEXTMap World 30 Digital Surface Model Intermap Technologies, Inc. 8310 South Valley Highway, Suite 400 Englewood, CO 80112 083013v3 NEXTMap World 30 (top) provides an improvement in vertical accuracy

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

Automatic extraction of forests from historical maps based on unsupervised classification in the CIELab color space

Automatic extraction of forests from historical maps based on unsupervised classification in the CIELab color space Automatic extraction of forests from historical maps based on unsupervised classification in the CIELab color space P.-A. Herrault 1,2, D. Sheeren 1, M. Fauvel 1, M. Paegelow 2 1 DYNAFOR Lab. UMR 1201

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

Slide 1. Bentley Descartes V8i. Presented by: Inga Morozoff, Bentley

Slide 1. Bentley Descartes V8i. Presented by: Inga Morozoff, Bentley Slide 1 Bentley Descartes V8i Presented by: Inga Morozoff, Bentley Slide 2 Agenda What is Bentley Descartes? Where is it used? Features Benefits Live demo Questions and Answers 2 WWW.BENTLEY.COM Slide

More information

Overview. 1. Aerial LiDAR in Wisconsin (20 minutes) 2. Demonstration of data in CAD (30 minutes) 3. High Density LiDAR (20 minutes)

Overview. 1. Aerial LiDAR in Wisconsin (20 minutes) 2. Demonstration of data in CAD (30 minutes) 3. High Density LiDAR (20 minutes) Overview 1. Aerial LiDAR in Wisconsin (20 minutes) 2. Demonstration of data in CAD (30 minutes) 3. High Density LiDAR (20 minutes) 4. Aerial lidar technology advancements (15 minutes) 5. Q & A 1. Aerial

More information

Exporting to a 3D Metafile (3DMF)

Exporting to a 3D Metafile (3DMF) Exporting to a 3D Metafile (3DMF) File Type: 3D Metafile (3DMF) Directions: 3DMF

More information

Creating 3D Animations

Creating 3D Animations 3 D A N I M A T I O N Tutorial Creating 3D Animations in TNTmips TNTedit TNTview Creating 3D Animations Before Getting Started This booklet introduces techniques for constructing and manipulating animated

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

Raster GIS. Raster GIS 11/1/2015. The early years of GIS involved much debate on raster versus vector - advantages and disadvantages

Raster GIS. Raster GIS 11/1/2015. The early years of GIS involved much debate on raster versus vector - advantages and disadvantages Raster GIS Google Earth image (raster) with roads overlain (vector) Raster GIS The early years of GIS involved much debate on raster versus vector - advantages and disadvantages 1 Feb 21, 2010 MODIS satellite

More information

Tools, Tips, and Workflows Breaklines, Part 4 Applying Breaklines to Enforce Constant Elevation

Tools, Tips, and Workflows Breaklines, Part 4 Applying Breaklines to Enforce Constant Elevation Breaklines, Part 4 Applying Breaklines to l Lewis Graham Revision 1.0 In the last edition of LP360 News, we discussed the creation of 3D breaklines. Recall that, for our purposes, a 3D breakline is a vector

More information

Statistical surfaces and interpolation. This is lecture ten

Statistical surfaces and interpolation. This is lecture ten Statistical surfaces and interpolation This is lecture ten Data models for representation of surfaces So far have considered field and object data models (represented by raster and vector data structures).

More information

A Survey of Methods to Extract Buildings from High-Resolution Satellite Images Ryan Friese CS510

A Survey of Methods to Extract Buildings from High-Resolution Satellite Images Ryan Friese CS510 A Survey of Methods to Extract Buildings from High-Resolution Satellite Images Ryan Friese CS510 There are many things in this world that are simply amazing. Some of these things are crafted by nature,

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Smoothing 2D Grids in Petrel 2D Grids are the foundation of much of the work done in Petrel. They are used for display, volume calculations, input for

More information

Making Topographic Maps

Making Topographic Maps T O P O Applications N Making Topographic Maps M A P S Making Topographic Maps with TNTmips page 1 Before Getting Started TNTmips provides a variety of tools for working with map data and making topographic

More information

Digital Elevation Models (DEMs)

Digital Elevation Models (DEMs) Digital Elevation Models (DEM) - Terrain Models (DTM) How has relief depiction on maps and online changed with digital mapping/ GIS?.. Perhaps more than the other map elements / layers Digital Elevation

More information

Tools, Tips, and Workflows Automatic Ground Classification of Dense Point Clouds in LP360

Tools, Tips, and Workflows Automatic Ground Classification of Dense Point Clouds in LP360 Automatic Ground Classification of Dense Point Clouds LP360, versions 2014.1 and above Lewis Graham Revision 1.0 The density of point clouds (usually expressed as points per square meter) is increasing

More information

N.J.P.L.S. An Introduction to LiDAR Concepts and Applications

N.J.P.L.S. An Introduction to LiDAR Concepts and Applications N.J.P.L.S. An Introduction to LiDAR Concepts and Applications Presentation Outline LIDAR Data Capture Advantages of Lidar Technology Basics Intensity and Multiple Returns Lidar Accuracy Airborne Laser

More information

Glacier Mapping and Monitoring

Glacier Mapping and Monitoring Glacier Mapping and Monitoring Exercises Tobias Bolch Universität Zürich TU Dresden tobias.bolch@geo.uzh.ch Exercise 1: Visualizing multi-spectral images with Erdas Imagine 2011 a) View raster data: Open

More information

By Colin Childs, ESRI Education Services. Catalog

By Colin Childs, ESRI Education Services. Catalog s resolve many traditional raster management issues By Colin Childs, ESRI Education Services Source images ArcGIS 10 introduces Catalog Mosaicked images Sources, mosaic methods, and functions are used

More information

Interface to icon Construction Instruments and Machine Control

Interface to icon Construction Instruments and Machine Control Interface to icon Construction Instruments and Machine Control CONTENTS 1. Preamble 2. Install and Configure LSS 3. Exporting data to Leica Machine Control (Scanlaser) 4. Importing LSS exported files into

More information

Image Services for Elevation Data

Image Services for Elevation Data Image Services for Elevation Data Peter Becker Need for Elevation Using Image Services for Elevation Data sources Creating Elevation Service Requirement: GIS and Imagery, Integrated and Accessible Field

More information

APPENDIX E2. Vernal Pool Watershed Mapping

APPENDIX E2. Vernal Pool Watershed Mapping APPENDIX E2 Vernal Pool Watershed Mapping MEMORANDUM To: U.S. Fish and Wildlife Service From: Tyler Friesen, Dudek Subject: SSHCP Vernal Pool Watershed Analysis Using LIDAR Data Date: February 6, 2014

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

Channel-adaptive Interpolation for Improved Bathymetric TIN

Channel-adaptive Interpolation for Improved Bathymetric TIN Channel-adaptive Interpolation for Improved Bathymetric TIN J. K. McGrath 1, J. P. O Kane 1, K. J. Barry 1, R. C. Kavanagh 2 1 Department of Civil and Environmental Engineering, National University of

More information

Should Contours Be Generated from Lidar Data, and Are Breaklines Required? Lidar data provides the most

Should Contours Be Generated from Lidar Data, and Are Breaklines Required? Lidar data provides the most Should Contours Be Generated from Lidar Data, and Are Breaklines Required? Lidar data provides the most accurate and reliable representation of the topography of the earth. As lidar technology advances

More information

Watershed Modeling National Streamflow Statistics Program (NSS) Interface

Watershed Modeling National Streamflow Statistics Program (NSS) Interface v. 9.1 WMS 9.1 Tutorial Watershed Modeling National Streamflow Statistics Program (NSS) Interface Use the NSS interface to estimate peak flows at different recurrence intervals Objectives Delineate a basin

More information

Chapter 8: Elevation Data

Chapter 8: Elevation Data Chapter 8: Elevation Data SADA permits user s to bring in elevation data into their analysis. The same types of grid file formats for importing gridded data discussed in the previous chapter apply to elevation

More information

Engineering Geology. Engineering Geology is backbone of civil engineering. Topographic Maps. Eng. Iqbal Marie

Engineering Geology. Engineering Geology is backbone of civil engineering. Topographic Maps. Eng. Iqbal Marie Engineering Geology Engineering Geology is backbone of civil engineering Topographic Maps Eng. Iqbal Marie Maps: are a two dimensional representation, of an area or region. There are many types of maps,

More information

Data Preprocessing. S1 Teknik Informatika Fakultas Teknologi Informasi Universitas Kristen Maranatha

Data Preprocessing. S1 Teknik Informatika Fakultas Teknologi Informasi Universitas Kristen Maranatha Data Preprocessing S1 Teknik Informatika Fakultas Teknologi Informasi Universitas Kristen Maranatha 1 Why Data Preprocessing? Data in the real world is dirty incomplete: lacking attribute values, lacking

More information

Oasis montaj How-To Guide. VOXI Earth Modelling - Running an AGG Unconstrained Inversion

Oasis montaj How-To Guide. VOXI Earth Modelling - Running an AGG Unconstrained Inversion Oasis montaj How-To Guide VOXI Earth Modelling - Running an AGG Unconstrained Inversion The software described in this manual is furnished under license and may only be used or copied in accordance with

More information

Exercise 1: Introduction to ILWIS with the Riskcity dataset

Exercise 1: Introduction to ILWIS with the Riskcity dataset Exercise 1: Introduction to ILWIS with the Riskcity dataset Expected time: 2.5 hour Data: data from subdirectory: CENN_DVD\ILWIS_ExerciseData\IntroRiskCity Objectives: After this exercise you will be able

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

Target 3D Geology Surfaces

Target 3D Geology Surfaces Target 3D Geology Surfaces The Target 3D Geology Surfaces (Contact Surface from Geology Grids) tool enables you to create subsurface topography grids, where the "Z" values correspond to the elevation of

More information

LIDAR MAPPING FACT SHEET

LIDAR MAPPING FACT SHEET 1. LIDAR THEORY What is lidar? Lidar is an acronym for light detection and ranging. In the mapping industry, this term is used to describe an airborne laser profiling system that produces location and

More information

LIDAR in the Pines SD Macintosh Version Boyd Ostroff 12/23/2018

LIDAR in the Pines SD Macintosh Version Boyd Ostroff 12/23/2018 LIDAR in the Pines SD Macintosh Version Boyd Ostroff 12/23/2018 LIDAR in the Pines SD is a lower resolution version of LIDAR in the Pines HD converted to Garmin s traditional.img file format. Although

More information

Extracting Elevation from Air Photos

Extracting Elevation from Air Photos Extracting Elevation from Air Photos TUTORIAL A digital elevation model (DEM) is a digital raster surface representing the elevations of a terrain for all spatial ground positions in the image. Traditionally

More information

NATIONWIDE POINT CLOUDS AND 3D GEO- INFORMATION: CREATION AND MAINTENANCE GEORGE VOSSELMAN

NATIONWIDE POINT CLOUDS AND 3D GEO- INFORMATION: CREATION AND MAINTENANCE GEORGE VOSSELMAN NATIONWIDE POINT CLOUDS AND 3D GEO- INFORMATION: CREATION AND MAINTENANCE GEORGE VOSSELMAN OVERVIEW National point clouds Airborne laser scanning in the Netherlands Quality control Developments in lidar

More information

Oasis montaj Best Practice Guide. VOXI Earth Modelling - Preparing Data for Inversion

Oasis montaj Best Practice Guide. VOXI Earth Modelling - Preparing Data for Inversion Oasis montaj Best Practice Guide VOXI Earth Modelling - Preparing Data for Inversion The software described in this manual is furnished under license and may only be used or copied in accordance with the

More information

GEOGRAPHIC INFORMATION SYSTEMS Lecture 24: Spatial Analyst Continued

GEOGRAPHIC INFORMATION SYSTEMS Lecture 24: Spatial Analyst Continued GEOGRAPHIC INFORMATION SYSTEMS Lecture 24: Spatial Analyst Continued Spatial Analyst - Spatial Analyst is an ArcGIS extension designed to work with raster data - in lecture I went through a series of demonstrations

More information

Class #2. Data Models: maps as models of reality, geographical and attribute measurement & vector and raster (and other) data structures

Class #2. Data Models: maps as models of reality, geographical and attribute measurement & vector and raster (and other) data structures Class #2 Data Models: maps as models of reality, geographical and attribute measurement & vector and raster (and other) data structures Role of a Data Model Levels of Data Model Abstraction GIS as Digital

More information

Oasis montaj How-To Guide. VOXI Earth Modelling - Running an Inversion

Oasis montaj How-To Guide. VOXI Earth Modelling - Running an Inversion Oasis montaj How-To Guide VOXI Earth Modelling - Running an Inversion The software described in this manual is furnished under license and may only be used or copied in accordance with the terms of the

More information

Spatial Hydrologic Modeling Using NEXRAD Rainfall Data in an HEC-HMS (MODClark) Model

Spatial Hydrologic Modeling Using NEXRAD Rainfall Data in an HEC-HMS (MODClark) Model v. 10.0 WMS 10.0 Tutorial Spatial Hydrologic Modeling Using NEXRAD Rainfall Data in an HEC-HMS (MODClark) Model Learn how to setup a MODClark model using distributed rainfall data Objectives Read an existing

More information

LIDAR in the Pines SD Windows Version Boyd Ostroff 12/22/2018

LIDAR in the Pines SD Windows Version Boyd Ostroff 12/22/2018 LIDAR in the Pines SD Windows Version Boyd Ostroff 12/22/2018 LIDAR in the Pines SD is a lower resolution version of LIDAR in the Pines HD converted to Garmin s traditional.img file format. Although the

More information

LORI COLLINS, RESEARCH ASSOCIATE PROFESSOR CONTRIBUTIONS BY: RICHARD MCKENZIE AND GARRETT SPEED, DHHC USF L IBRARIES

LORI COLLINS, RESEARCH ASSOCIATE PROFESSOR CONTRIBUTIONS BY: RICHARD MCKENZIE AND GARRETT SPEED, DHHC USF L IBRARIES LORI COLLINS, RESEARCH ASSOCIATE PROFESSOR CONTRIBUTIONS BY: RICHARD MCKENZIE AND GARRETT SPEED, DHHC USF L IBRARIES AERIAL AND TERRESTRIAL SURVEY WORKFLOWS Workflow from project planning applications

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

3D Horizon/Fault Interpretation Exercise Using Seismic Micro-Technology s PC based 2d/3dPAK Seismic Interpretation Software

3D Horizon/Fault Interpretation Exercise Using Seismic Micro-Technology s PC based 2d/3dPAK Seismic Interpretation Software 3D Horizon/Fault Interpretation Exercise Using Seismic Micro-Technology s PC based 2d/3dPAK Seismic Interpretation Software Prepared by Tom Wilson, Appalachian Region Resource Center, Petroleum Technology

More information

Getting Started with montaj GridKnit

Getting Started with montaj GridKnit Getting Started with montaj GridKnit Today s explorers use regional and local geophysical compilations of magnetic, radiometric and apparent resistivity data to perform comprehensive geologic interpretations

More information

DIGITAL SURFACE MODELS OF CITY AREAS BY VERY HIGH RESOLUTION SPACE IMAGERY

DIGITAL SURFACE MODELS OF CITY AREAS BY VERY HIGH RESOLUTION SPACE IMAGERY DIGITAL SURFACE MODELS OF CITY AREAS BY VERY HIGH RESOLUTION SPACE IMAGERY Jacobsen, K. University of Hannover, Institute of Photogrammetry and Geoinformation, Nienburger Str.1, D30167 Hannover phone +49

More information

Vegetation height maps derived from digital elevation models the next innovation in the production of orienteering maps?

Vegetation height maps derived from digital elevation models the next innovation in the production of orienteering maps? Vegetation height maps derived from digital elevation models the next innovation in the production of orienteering maps? Development of Orienteering Maps. 1. Revolution 20 years ago: Digital Cartography

More information

(Refer Slide Time: 0:51)

(Refer Slide Time: 0:51) Introduction to Remote Sensing Dr. Arun K Saraf Department of Earth Sciences Indian Institute of Technology Roorkee Lecture 16 Image Classification Techniques Hello everyone welcome to 16th lecture in

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

Lecture 4: Digital Elevation Models

Lecture 4: Digital Elevation Models Lecture 4: Digital Elevation Models GEOG413/613 Dr. Anthony Jjumba 1 Digital Terrain Modeling Terms: DEM, DTM, DTEM, DSM, DHM not synonyms. The concepts they illustrate are different Digital Terrain Modeling

More information

Objectives Import DEMs from an online database. Set the display options of an imported DEM and view and edit the DEM attributes.

Objectives Import DEMs from an online database. Set the display options of an imported DEM and view and edit the DEM attributes. v. 10.0 WMS 10.0 Tutorial Import, view, and edit digital elevation models Objectives Import DEMs from an online database. Set the display options of an imported DEM and view and edit the DEM attributes.

More information

Improved Applications with SAMB Derived 3 meter DTMs

Improved Applications with SAMB Derived 3 meter DTMs Improved Applications with SAMB Derived 3 meter DTMs Evan J Fedorko West Virginia GIS Technical Center 20 April 2005 This report sums up the processes used to create several products from the Lorado 7

More information

Creating Surfaces. Steve Kopp Steve Lynch

Creating Surfaces. Steve Kopp Steve Lynch Steve Kopp Steve Lynch Overview Learn the types of surfaces and the data structures used to store them Emphasis on surface interpolation Learn the interpolation workflow Understand how interpolators work

More information

Tools, Tips and Workflows Geiger-Mode LIDAR Workflow Review GeoCue, TerraScan, versions and above

Tools, Tips and Workflows Geiger-Mode LIDAR Workflow Review GeoCue, TerraScan, versions and above GeoCue, TerraScan, versions 015.005 and above Martin Flood August 8, 2016 Geiger-mode lidar data is getting a lot of press lately as the next big thing in airborne data collection. Unlike traditional lidar

More information

v Prerequisite Tutorials GSSHA Modeling Basics Stream Flow GSSHA WMS Basics Creating Feature Objects and Mapping their Attributes to the 2D Grid

v Prerequisite Tutorials GSSHA Modeling Basics Stream Flow GSSHA WMS Basics Creating Feature Objects and Mapping their Attributes to the 2D Grid v. 10.1 WMS 10.1 Tutorial GSSHA Modeling Basics Developing a GSSHA Model Using the Hydrologic Modeling Wizard in WMS Learn how to setup a basic GSSHA model using the hydrologic modeling wizard Objectives

More information

Chapter Two: Descriptive Methods 1/50

Chapter Two: Descriptive Methods 1/50 Chapter Two: Descriptive Methods 1/50 2.1 Introduction 2/50 2.1 Introduction We previously said that descriptive statistics is made up of various techniques used to summarize the information contained

More information

AUTOMATIC EXTRACTION OF TERRAIN SKELETON LINES FROM DIGITAL ELEVATION MODELS

AUTOMATIC EXTRACTION OF TERRAIN SKELETON LINES FROM DIGITAL ELEVATION MODELS AUTOMATIC EXTRACTION OF TERRAIN SKELETON LINES FROM DIGITAL ELEVATION MODELS F. Gülgen, T. Gökgöz Yildiz Technical University, Department of Geodetic and Photogrammetric Engineering, 34349 Besiktas Istanbul,

More information