Interpolation Local Interpolation Methods –IDW – Inverse Distance Weighting –Natural Neighbor –Spline – Radial Basis Functions –Kriging – Geostatistical.

Slides:



Advertisements
Similar presentations
Basic geostatistics Austin Troy.
Advertisements

Geo479/579: Geostatistics Ch14. Search Strategies.
Steve Kopp and Steve Lynch
University of Wisconsin-Milwaukee Geographic Information Science Geography 625 Intermediate Geographic Information Science Instructor: Changshan Wu Department.
WFM 6202: Remote Sensing and GIS in Water Management © Dr. Akm Saiful IslamDr. Akm Saiful Islam WFM 6202: Remote Sensing and GIS in Water Management Akm.
Z – Surface Interpolation…. INTERPOLATION Procedure to predict values of attributes at unsampled points Why? Can’t measure all locations: Time Money Impossible.
WFM 6202: Remote Sensing and GIS in Water Management
Spatial Analysis Longley et al., Ch 14,15. Transformations Buffering (Point, Line, Area) Point-in-polygon Polygon Overlay Spatial Interpolation –Theissen.
Spatial Interpolation
Concept Course on Spatial Dr. A.K.M. Saiful Islam Developing ground water level map for Dinajpur district, Bangladesh using geo-statistical analyst.
Week 17GEOG2750 – Earth Observation and GIS of the Physical Environment1 Lecture 14 Interpolating environmental datasets Outline – creating surfaces from.
Topic 6: Spatial Interpolation
Geo-statistical Analysis
Deterministic Solutions Geostatistical Solutions
Lecture 4. Interpolating environmental datasets
Esri UC 2014 | Technical Workshop | Creating Surfaces Steve Kopp Steve Lynch.
Ordinary Kriging Process in ArcGIS
Geostatistics Mike Goodchild. Spatial interpolation n A field –variable is interval/ratio –z = f(x,y) –sampled at a set of points n How to estimate/guess.
Diplomanden-Doktoranden-Seminar Bonn – 18. Januar 2010 Kriging Connection between Stepwise Kriging and Data Construction and Stepwise Kriging of Victorian.
Applications in GIS (Kriging Interpolation)
Slope and Aspect Calculated from a grid of elevations (a digital elevation model) Slope and aspect are calculated at each point in the grid, by comparing.
Geostatistic Analysis
Geo479/579: Geostatistics Ch13. Block Kriging. Block Estimate  Requirements An estimate of the average value of a variable within a prescribed local.
Spatial Interpolation
Using ESRI ArcGIS 9.3 Spatial Analyst
$88.65 $ $22.05/A profit increase Improving Wheat Profits Eakly, OK Irrigated, Behind Cotton.
V. Space Curves Types of curves Explicit Implicit Parametric.
Basic geostatistics Austin Troy.
Interpolation.
COMMON EVALUATION FINAL PROJECT Vira Oleksyuk ECE 8110: Introduction to machine Learning and Pattern Recognition.
Spatial Analysis.
Intro. To GIS Lecture 9 Terrain Analysis April 24 th, 2013.
Interpolation Tools. Lesson 5 overview  Concepts  Sampling methods  Creating continuous surfaces  Interpolation  Density surfaces in GIS  Interpolators.
Geographic Information Science
Model Construction: interpolation techniques 1392.
GEOSTATISICAL ANALYSIS Course: Special Topics in Remote Sensing & GIS Mirza Muhammad Waqar Contact: EXT:2257.
Chapter 8 – Geographic Information Analysis O’Sullivan and Unwin “ Describing and Analyzing Fields” By: Scott Clobes.
Ripley K – Fisher et al.. Ripley K - Issues Assumes the process is homogeneous (stationary random field). Ripley K was is very sensitive to study area.
Spatial Interpolation Chapter 13. Introduction Land surface in Chapter 13 Land surface in Chapter 13 Also a non-existing surface, but visualized as a.
Spatial Analysis & Geostatistics Methods of Interpolation Linear interpolation using an equation to compute z at any point on a triangle.
Interpolation of Surfaces Spatial Data Analysis. Spatial Interpolation Spatial interpolation is the prediction of exact values of attributes at un-sampled.
1 GEOG4650/5650 – Fall 2007 Spatial Interpolation Triangulation Inverse-distance Kriging (optimal interpolation)
1 Peter Fox GIS for Science ERTH 4750 (98271) Week 5, Tuesday, February 21, 2012 Introduction to geostatistics. Interpolation techniques continued (regression,
Chapter 16 - Spatial Interpolation
1 Overview Importing data from generic raster files Creating surfaces from point samples Mapping contours Calculating summary attributes for polygon features.
Statistical Surfaces Any geographic entity that can be thought of as containing a Z value for each X,Y location –topographic elevation being the most obvious.
L15 – Spatial Interpolation – Part 1 Chapter 12. INTERPOLATION Procedure to predict values of attributes at unsampled points Why? Can’t measure all locations:
Lecture 6: Point Interpolation
Ran TAO Missing Spatial Data. Examples Places cannot be reached E.g. Mountainous area Sample points E.g. Air pollution Damage of data E.g.
Principles of Extrapolation
Interpolation and evaluation of probable Maximum Precipitation (PMP) patterns using different methods by: tarun gill.
Geo479/579: Geostatistics Ch12. Ordinary Kriging (2)
Geo597 Geostatistics Ch11 Point Estimation. Point Estimation  In the last chapter, we looked at estimating a mean value over a large area within which.
INTERPOLATION Procedure to predict values of attributes at unsampled points within the region sampled Why?Examples: -Can not measure all locations: - temperature.
Objective Analysis and Data Assimilation
Labs Put your name on your labs! Layouts: Site 1 Photos Title Legend
Creating Surfaces Steve Kopp Steve Lynch.
WFM 6202: Remote Sensing and GIS in Water Management
Spatial Analysis & Modeling
Chapter 10 Problems Even problems are at end of text. 19. What is a kernel in a moving window operation? Does the kernel size or shape change for different.
Problems with Vector Overlay Analysis (esp. Polygon)
Surface Interpolation in ArcGIS
Interpolation of Surfaces
Spatial Analysis Longley et al..
Interpolation - applications
Interpolation & Contour Maps
Spatial interpolation
Interpolating Surfaces
Creating Surfaces with 3D Analyst
Presentation transcript:

Interpolation Local Interpolation Methods –IDW – Inverse Distance Weighting –Natural Neighbor –Spline – Radial Basis Functions –Kriging – Geostatistical –Local Polynomials –Hybrids (interpolation and rule-based modeling)

Geospatial Analysis and Modeling MEA592 – Helena Mitasova When we need interpolation Bivariate - values measured at 2D points to surface : Scattered points, profiles, isolines to raster, Denser/smoother TIN or higher resolution raster

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Scattered points to raster Given Points Regular Grid

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: principles Problem definition find a function which passes through (or close to) the given set of discrete points and then use this function to compute the values at a different set of points – usually a regular grid

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: principles Problem definition find a function which passes through (or close to) the given set of discrete points and then use this function to compute the values at a different set of points – usually a regular grid Bivariate formulation Given m-points (x i, y i, z i ), i=1,m find such F(x,y) that for each i=1,m z i =F(x i,y i ) - interpolation z i =F(x i,y i ) + e(x i,y i ) - approximation and compute z k =F(x k,y k ) where (x k,y k ) are grid points Why is this a difficult problem?

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: principles Problem does not have a unique solution:

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: principles Problem does not have a unique solution

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: principles Problem does not have a unique solution

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: principles Problem does not have a unique solution: we need additional conditions r r j

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: conditions Additional conditions define different types of interpolation: Locality condition –each point influences the surface only up to certain distance –or value at a given point will be similar to values at nearby points Geostatistical conditions –surface is one realization of a random function with spatial covariance Smoothness –Function should pass through or close to the data points and be as smooth as possible

Interpolation IDW - the simplest and most common method IDW Z i is value of known point D ij is distance to known point Z j is the unknown point n is a user selected exponent (often 1,2 or 3) Any number of points may be used up to all points in the sample; typically 3 or more

Interpolation IDW n = 1 = 39.5 n = 2 Z i = 35.5

Interpolation IDW –Factors affecting interpolated surface: Size of exponent, n affects the shape of the surface (larger n means the closer points are more influential) A larger number of sample points results in a smoother surface and the variance decreases. Cell size, increase size creates a rougher looking surface –Properties of interpolated surface: Conservative, output will never over- or under-estimate the minimum or maximum input values. As you moves away from observed points the surface will converge on the local arithmetic mean value. Surface is rough, with peaks and valleys at the observed points. The larger the exponent the greater the extent of the peaks and valleys.

Effect of IDW Powers

Interpolation: IDW n = 2 Sample = 12 n = 2 Sample = 24 n = 4 Sample = 12

Geospatial Analysis and Modeling MEA592 – Helena Mitasova Interpolation: points to 2m DEM Voronoi polygons Average weighted by inverse distance

Interpolation: Spline Family There a number of methods in the Radial Basis Function (RBF) or Spline family. A spline is a mathematical curve that often takes the form of a polynomial curve (approximately a degree 3 polynomial or sin/cos wave). RBF methods are a special case of splines. Multiquadric and spline functions The surface must have minimum curvature—the cumulative sum of the squares of the second derivative terms of the surface taken over each point on the surface must be a minimum. The second derivative is a measure of roughness.

Interpolation: Spline Family RBFs are used to produce smooth surfaces from a large number of data points. –The functions produce good results for gently varying surfaces such as elevation. RBFs are inappropriate when large changes in the surface values occur within short distances or when you suspect the sample data is prone to measurement error or uncertainty.

Basic Concept of RBFs RBFs are formed over each data location. An RBF is a function that changes with distance from a location. Z(x,y) = w 1 ϕ 1 + w 2 ϕ 2 + … Weights are found by requiring that, when the prediction is moved to a location with a measured value, the data value is predicted exactly. This forms N equations with N unknowns and can be solved uniquely. But there is a penalty for roughness, so you create a smooth surface.

Spline in Geostatistical Analyst RBF methods are a series of exact interpolation techniques; that is, the surface must go through each measured sample value. There are five different basis functions: –Thin-plate spline –Spline with tension – also in Spatial Analyst –Completely regularized spline – also in Spatial Analyst –Multiquadric function –Inverse multiquadric function Each basis function has a different shape and results in a slightly different interpolation surface.

Interpolation:Spline Family Spline –Factors affecting interpolated surface: Method, Regularized is smoother then Tension. Weight A larger number of sample points results in a smoother surface and the variance decreases. Cell size, increase size creates a rougher looking surface –Properties of interpolated surface: No Conservative: output can over- or under-estimate the minimum or maximum input values. As you moves away from observed points the surface can decrease or increase significantly from the expect. Surface is smooth, with peaks and valleys away from the observed points.

IDW vs.Spline

Natural Neighbor Natural neighbor interpolation finds the closest subset of input samples to a query point and applies weights to them based on proportionate areas in order to interpolate a value. Its basic properties are that it's local, using only a subset of samples that surround a query point, and that interpolated heights are guaranteed to be within the range of the samples used. It does not infer trends and will not produce peaks, pits, ridges or valleys that are not already represented by the input samples. It adapts locally to the structure of the input data, requiring no input from the user pertaining to search radius, sample count, or shape. It works equally well with regularly and irregularly distributed data.

Natural Neighbor The natural neighbors of any point are those associated with neighboring Voronoi (i.e. Thiessen) polygons. Initially, a Voronoi diagram is constructed of all the given points, represented by the olive colored polygons. A new Voronoi polygon, beige color, is then created around the interpolation point (red star). The proportion of overlap between this new polygon and the initial polygons are then used as the weights. By comparison, a distance based interpolator such as IDW (Inverse Distance Weighted) would assign similar weights to the northern most point and to the north-eastern point based on their similar distance from the interpolation point. Natural neighbor interpolation, however, assigns weights of 19.12% and 0.38% respectively which is based on the percentage of overlap.