Map overlay and spatial aggregation in sp
|
|
|
- Ralph Baker
- 10 years ago
- Views:
Transcription
1 Map overlay and spatial aggregation in sp Edzer Pebesma June 5, 2015 Abstract Numerical map overlay combines spatial features from one map layer with the attribute (numerical) properties of another. This vignette explains the R method over, which provides a consistent way to retrieve indices or attributes from a given spatial object (map layer) at the locations of another. Using this, the R generic aggregate is extended for spatial data, so that any spatial properties can be used to define an aggregation predicate, and any R function can be used as aggregation function. Contents 1 Introduction 1 2 Geometry overlays 2 3 Using over to extract attributes 5 4 Lines, and Polygon-Polygon overlays require rgeos 7 5 Aggregation 10 1 Introduction According to the free e-book by Davidson (2008), An overlay is a clear sheet of plastic or semi-transparent paper. It is used to display supplemental map and tactical information related to military operations. It is often used as a supplement to orders given in the field. Information is plotted on the overlay at the same scale as on the map, aerial photograph, or other graphic being used. Institute for Geoinformatics, University of Muenster, Weseler Strasse 253, Münster, Germany. [email protected] 1
2 When the overlay is placed over the graphic, the details plotted on the overlay are shown in their true position. This suggests that map overlay is concerned with combining two, or possibly more, map layers by putting them on top of each other. This kind of overlay can be obtained in R e.g. by plotting one map layer, and plotting a second map layer on top of it. If the second one contains polygons, transparent colours can be used to avoid hiding of the first layer. When using the spplot command, the sp.layout argument can be used to combine multiple layers. O Sullivan and Unwin (2003) argue in chapter 10 (Putting maps together: map overlay) that map overlay has to do with the combination of two (or more) maps. They mainly focus on the combination of the selection criteria stemming from several map layers, e.g. finding the deciduous forest area that is less than 5 km from the nearest road. They call this boolean overlays. One could look at this problem as a polygon-polygon overlay, where we are looking for the intersection of the polygons with the deciduous forest with the polygons delineating the area less than 5 km from a road. Other possibilities are to represent one or both coverages as grid maps, and find the grid cells for which both criteria are valid (grid-grid overlay). A third possibility would be that one of the criteria is represented by a polygon, and the other by a grid (polygon-grid overlay, or grid-polygon overlay). In the end, as O Sullivan and Unwin argue, we can overlay any spatial type (points, lines, polygons, pixels/grids) with any other. In addition, we can address spatial attributes (as the case of grid data), or only the geometry (as in the case of the polygon-polygon intersection). This vignette will explain how the over method in package sp can be used to compute map overlays, meaning that instead of overlaying maps visually, the digital information that comes from combining two digital map layers is retrieved. From there, methods to aggregate (compute summary statistics; Heuvelink and Pebesma, 1999) over a spatial domain will be developed and demonstrated. Pebesma (2012) describes overlay and aggregation for spatiotemporal data. 2 Geometry overlays We will use the word geometry to denote the purely spatial characteristics, meaning that attributes (qualities, properties of something at a particular location) are ignored. With location we denote a point, line, polygon or grid cell. Section 3 will discuss how to retrieve and possibly aggregate or summarize attributes found there. Given two geometries, A and B, the following equivalent commands > A %over% B > over(a, B) retrieve the geometry (location) indices of B at the locations of A. More in particular, an integer vector of length length(a) is returned, with NA values for 2
3 locations in A not matching with locations in B (e.g. those points outside a set of polygons). Selecting points of A inside or on some geometry B (e.g. a set of polygons) B is done by > A[B,] which is short for > A[!is.na(over(A,B)),] We will now illustrate this with toy data created by > library(sp) > x = c(0.5, 0.5, 1.2, 1.5) > y = c(1.5, 0.5, 0.5, 0.5) > xy = cbind(x,y) > dimnames(xy)[[1]] = c("a", "b", "c", "d") > pts = SpatialPoints(xy) > xpol = c(0,1,1,0,0) > ypol = c(0,0,1,1,0) > pol = SpatialPolygons(list( + Polygons(list(Polygon(cbind(xpol-1.05,ypol))), ID="x1"), + Polygons(list(Polygon(cbind(xpol,ypol))), ID="x2"), + Polygons(list(Polygon(cbind(xpol,ypol-1.05))), ID="x3"), + Polygons(list(Polygon(cbind(xpol+1.05,ypol))), ID="x4"), + Polygons(list(Polygon(cbind(xpol+.4, ypol+.1))), ID="x5") + )) and shown in figure 1. Now, the polygons pol in which points pts lie are > over(pts, pol) a b c d NA As points b and c fall in two overlapping polygons, we can retrieve the complete information as a list: > over(pts, pol, returnlist = TRUE) $a integer(0) $b [1] 2 5 $c 3
4 x1 x2 x3 a b c d x5 x Figure 1: Toy data: points (a-d), and (overlapping) polygons (x1-x5) [1] 4 5 $d [1] 4 and the appropriate points falling in any of the polygons are selected by > pts[pol] SpatialPoints: x y b c d Coordinate Reference System (CRS) arguments: NA The reverse, identical sequence of commands for selecting polygons pol that have (one or more) points of pts in them is done by > over(pol, pts) 4
5 x1 x2 x3 x4 x5 NA 2 NA 3 2 > over(pol, pts, returnlist = TRUE) $x1 integer(0) $x2 [1] 2 $x3 integer(0) $x4 [1] 3 4 $x5 [1] 2 3 > row.names(pol[pts]) [1] "x2" "x4" "x5" 3 Using over to extract attributes This section shows how over(x,y) is used to extract attribute values of argument y at locations of x. The return value is either an (aggregated) data frame, or a list. We now create an example SpatialPointsDataFrame and a SpatialPolygonsDataFrame using the toy data created earlier: > zdf = data.frame(z1 = 1:4, z2=4:1, f = c("a", "a", "b", "b"), + row.names = c("a", "b", "c", "d")) > zdf z1 z2 f a 1 4 a b 2 3 a c 3 2 b d 4 1 b > ptsdf = SpatialPointsDataFrame(pts, zdf) > zpl = data.frame(z = c(10, 15, 25, 3, 0), zz=1:5, + f = c("z", "q", "r", "z", "q"), row.names = c("x1", "x2", "x3", "x4", "x5")) > zpl 5
6 z zz f x z x q x r x4 3 4 z x5 0 5 q > poldf = SpatialPolygonsDataFrame(pol, zpl) In the simplest example > over(pts, poldf) z zz f a NA NA <NA> b 15 2 q c 3 4 z d 3 4 z a data.frame is created with each row corresponding to the first element of the poldf attributes at locations in pts. As an alternative, we can pass a user-defined function to process the table (selecting those columns to which the function makes sense): > over(pts, poldf[1:2], fn = mean) z zz a NA NA b c d To obtain the complete list of table entries at each point of pts, we use the returnlist argument: > over(pts, poldf, returnlist = TRUE) $a [1] z zz f <0 rows> (or 0-length row.names) $b z zz f x q x5 0 5 q $c z zz f 6
7 x4 3 x5 0 4 z 5 q $d z zz f x4 3 4 z The same actions can be done when the arguments are reversed: > over(pol, ptsdf) z1 z2 f x1 NA NA <NA> x2 2 3 a x3 NA NA <NA> x4 3 2 b x5 2 3 a > over(pol, ptsdf[1:2], fn = mean) z1 z2 x1 NA NA x x3 NA NA x x Lines, and Polygon-Polygon overlays require rgeos Package sp provides many of the over methods, but not all. Package rgeos can compute geometry intersections, i.e. for any set of (points, lines, polygons) to determine whether they have one ore more points in common. This means that the over methods provided by package sp can be completed by rgeos for any over methods where a SpatialLines object is involved (either as x or y), or where x and y are both of class SpatialPolygons (table 1). For this purpose, objects of class SpatialPixels or SpatialGrid are converted to SpatialPolygons. A toy example combines polygons with lines, created by > l1 = Lines(Line(coordinates(pts)), "L1") > l2 = Lines(Line(rbind(c(1,1.5), c(1.5,1.5))), "L2") > L = SpatialLines(list(l1,l2)) and shown in figure 2. The set of over operations on the polygons, lines and points is shown below (note that lists and vectors are named in this case): 7
8 y: Points y: Lines y: Polygons y: Pixels y: Grid x: Points s r s s s x: Lines r r r r:y r:y x: Polygons s r r s:y s:y x: Pixels s:x r:x s:x s:x s:x x: Grid s:x r:x s:x s:x s:x Table 1: over methods implemented for different x and y arguments. s: provided by sp; r: provided by rgeos. s:x or s:y indicates that the x or y argument is converted to grid cell center points; r:x or r:y indicate grids or pixels are converted to polygons. > library(rgeos) > over(pol, pol) x1 x2 x3 x4 x > over(pol, pol,returnlist = TRUE) $x1 x1 1 $x2 x2 x5 2 5 $x3 x3 3 $x4 x4 x5 4 5 $x5 x2 x4 x > over(pol, L) x1 x2 x3 x4 x5 NA 1 NA 1 1 > over(l, pol) 8
9 x1 x2 x3 x5 L1 x4 L Figure 2: Toy data: two lines and (overlapping) polygons (x1-x5) L1 L2 2 NA > over(l, pol, returnlist = TRUE) $L1 x2 x4 x $L2 named integer(0) > over(l, L) L1 L2 1 2 > over(pts, L) a b c d
10 > over(l, pts) L1 L2 1 NA Another example overlays a line with a grid, shown in figure 3. 5 Aggregation In the following example, the values of a fine grid with 40 m x 40 m cells are aggregated to a course grid with 400 m x 400 m cells. > data(meuse.grid) > gridded(meuse.grid) = ~x+y > off = gridparameters(meuse.grid)$cellcentre.offset + 20 > gt = GridTopology(off, c(400,400), c(8,11)) > SG = SpatialGrid(gt) > agg = aggregate(meuse.grid[3], SG) Figure 4 shows the result of this aggregation (agg, in colors) and the points (+) of the original grid (meuse.grid). Function aggregate aggregates its first argument over the geometries of the second argument, and returns a geometry with attributes. The default aggregation function (mean) can be overridden. An example of the aggregated values of meuse.grid along (or under) the line shown in Figure?? are > sl.agg = aggregate(meuse.grid[,1:3], sl) > class(sl.agg) [1] "SpatialLinesDataFrame" attr(,"package") [1] "sp" > as.data.frame(sl.agg) part.a part.b dist L Function aggregate returns a spatial object of the same class of sl (SpatialLines), and as.data.frame shows the attribute table as a data.frame. References ˆ O Sullivan, D., Unwin, D. (2003) Geographical Information Analysis. Wiley, NJ. ˆ Davidson, R., Reading topographic maps. Free e-book from: http: // 10
11 > data(meuse.grid) > gridded(meuse.grid) = ~x+y > Pt = list(x = c( , ), y = c( , )) > sl = SpatialLines(list(Lines(Line(cbind(Pt$x,Pt$y)), "L1"))) > image(meuse.grid) > xo = over(sl, geometry(meuse.grid), returnlist = TRUE) > image(meuse.grid[xo[[1]], ],col=grey(0.5),add=t) > lines(sl) Figure 3: the line Overlay of line with grid, identifying cells crossed (or touched) by 11
12 Figure 4: aggregation over meuse.grid distance values to a 400 m x 400 m grid ˆ Heuvelink, G.B.M., and E.J. Pebesma, Spatial aggregation and soil process modelling. Geoderma 89, 1-2, ˆ Pebesma, E., Spatio-temporal overlay and aggregation. Package vignette for package spacetime, packages/spacetime/vignettes/sto.pdf 12
Classes and Methods for Spatial Data: the sp Package
Classes and Methods for Spatial Data: the sp Package Edzer Pebesma Roger S. Bivand Feb 2005 Contents 1 Introduction 2 2 Spatial data classes 2 3 Manipulating spatial objects 3 3.1 Standard methods..........................
The sp Package. July 27, 2006
The sp Package July 27, 2006 Version 0.8-18 Date 2006-07-10 Title classes and methods for spatial data Author Edzer J. Pebesma , Roger Bivand and others Maintainer
Lesson 15 - Fill Cells Plugin
15.1 Lesson 15 - Fill Cells Plugin This lesson presents the functionalities of the Fill Cells plugin. Fill Cells plugin allows the calculation of attribute values of tables associated with cell type layers.
Customising spatial data classes and methods
Customising spatial data classes and methods Edzer Pebesma Feb 2008 Contents 1 Programming with classes and methods 2 1.1 S3-style classes and methods.................... 3 1.2 S4-style classes and methods....................
Understanding Raster Data
Introduction The following document is intended to provide a basic understanding of raster data. Raster data layers (commonly referred to as grids) are the essential data layers used in all tools developed
Package rgeos. September 28, 2015
Package rgeos September 28, 2015 Title Interface to Geometry Engine - Open Source (GEOS) Version 0.3-13 Date 2015-09-26 Depends R (>= 2.14.0) Imports methods, sp (>= 1.1-0), utils, stats, graphics LinkingTo
Introduction to GIS (Basics, Data, Analysis) & Case Studies. 13 th May 2004. Content. What is GIS?
Introduction to GIS (Basics, Data, Analysis) & Case Studies 13 th May 2004 Content Introduction to GIS Data concepts Data input Analysis Applications selected examples What is GIS? Geographic Information
Introduction to R+OSGeo (software installation and first steps)
Introduction to R+OSGeo (software installation and first steps) Tomislav Hengl ISRIC World Soil Information, Wageningen University About myself Senior researcher at ISRIC World Soil Information; PhD in
UCL Depthmap 7: Data Analysis
UCL Depthmap 7: Data Analysis Version 7.12.00c Outline Data analysis in Depthmap Although Depthmap is primarily a graph analysis tool, it does allow you to investigate data that you produce. This tutorial
The STC for Event Analysis: Scalability Issues
The STC for Event Analysis: Scalability Issues Georg Fuchs Gennady Andrienko http://geoanalytics.net Events Something [significant] happened somewhere, sometime Analysis goal and domain dependent, e.g.
APPLICATION OF OPEN SOURCE/FREE SOFTWARE (R + GOOGLE EARTH) IN DESIGNING 2D GEODETIC CONTROL NETWORK
INTERNATIONAL SCIENTIFIC CONFERENCE AND XXIV MEETING OF SERBIAN SURVEYORS PROFESSIONAL PRACTICE AND EDUCATION IN GEODESY AND RELATED FIELDS 24-26, June 2011, Kladovo -,,Djerdap upon Danube, Serbia. APPLICATION
GEOSTAT13 Spatial Data Analysis Tutorial: Raster Operations in R Tuesday AM
GEOSTAT13 Spatial Data Analysis Tutorial: Raster Operations in R Tuesday AM In this tutorial we shall experiment with the R package 'raster'. We will learn how to read and plot raster objects, learn how
A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION
A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION Zeshen Wang ESRI 380 NewYork Street Redlands CA 92373 [email protected] ABSTRACT Automated area aggregation, which is widely needed for mapping both natural
Raster to Vector Conversion for Overlay Analysis
Raster to Vector Conversion for Overlay Analysis In some cases, it may be necessary to perform vector-based analyses on a raster data set, or vice versa. The types of analyses that can be performed on
Introduction to the data.table package in R
Introduction to the data.table package in R Revised: September 18, 2015 (A later revision may be available on the homepage) Introduction This vignette is aimed at those who are already familiar with creating
Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis. Data management operations
Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis Transform (reproject) Merge Append Clip Dissolve The role of topology in GIS analysis Data management
Objectives. Raster Data Discrete Classes. Spatial Information in Natural Resources FANR 3800. Review the raster data model
Spatial Information in Natural Resources FANR 3800 Raster Analysis Objectives Review the raster data model Understand how raster analysis fundamentally differs from vector analysis Become familiar with
Plotting: Customizing the Graph
Plotting: Customizing the Graph Data Plots: General Tips Making a Data Plot Active Within a graph layer, only one data plot can be active. A data plot must be set active before you can use the Data Selector
ArcGIS Online. Visualizing Data: Tutorial 3 of 4. Created by: Julianna Kelly
ArcGIS Online Visualizing Data: Tutorial 3 of 4 2014 Created by: Julianna Kelly Contents of This Tutorial The Goal of This Tutorial In this tutorial we will learn about the analysis tools that ArcGIS Online
Introduction to GIS. http://libguides.mit.edu/gis
Introduction to GIS http://libguides.mit.edu/gis 1 Overview What is GIS? Types of Data and Projections What can I do with GIS? Data Sources and Formats Software Data Management Tips 2 What is GIS? 3 Characteristics
INTRODUCTION TO ARCGIS SOFTWARE
INTRODUCTION TO ARCGIS SOFTWARE I. History of Software Development a. Developer ESRI - Environmental Systems Research Institute, Inc., in 1969 as a privately held consulting firm that specialized in landuse
APPLY EXCEL VBA TO TERRAIN VISUALIZATION
APPLY EXCEL VBA TO TERRAIN VISUALIZATION 1 2 Chih-Chung Lin( ), Yen-Ling Lin ( ) 1 Secretariat, National Changhua University of Education. General Education Center, Chienkuo Technology University 2 Dept.
Tutorial Creating a regular grid for point sampling
This tutorial describes how to use the fishnet, clip, and optionally the buffer tools in ArcGIS 10 to generate a regularly-spaced grid of sampling points inside a polygon layer. The steps below should
REGIONAL SEDIMENT MANAGEMENT: A GIS APPROACH TO SPATIAL DATA ANALYSIS. Lynn Copeland Hardegree, Jennifer M. Wozencraft 1, Rose Dopsovic 2 INTRODUCTION
REGIONAL SEDIMENT MANAGEMENT: A GIS APPROACH TO SPATIAL DATA ANALYSIS Lynn Copeland Hardegree, Jennifer M. Wozencraft 1, Rose Dopsovic 2 ABSTRACT: Regional sediment management (RSM) requires the capability
Institute of Natural Resources Departament of General Geology and Land use planning Work with a MAPS
Institute of Natural Resources Departament of General Geology and Land use planning Work with a MAPS Lecturers: Berchuk V.Y. Gutareva N.Y. Contents: 1. Qgis; 2. General information; 3. Qgis desktop; 4.
Package maptools. September 29, 2015
Version 0.8-37 Date 2015-09-28 Package maptools September 29, 2015 Title Tools for Reading and Handling Spatial Objects Encoding UTF-8 Depends R (>= 2.10), sp (>= 1.0-11) Imports foreign (>= 0.8), methods,
University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 5: Analyzing Spatial Data. Buffering Features:
: Analyzing Spatial Data Buffering Features: A buffer operation is one of the most common spatial analysis tools. A buffer is a map feature that represents a uniform distance around a feature. When creating
An Introduction to Open Source Geospatial Tools
An Introduction to Open Source Geospatial Tools by Tyler Mitchell, author of Web Mapping Illustrated GRSS would like to thank Mr. Mitchell for this tutorial. Geospatial technologies come in many forms,
SPATIAL ANALYSIS IN GEOGRAPHICAL INFORMATION SYSTEMS. A DATA MODEL ORffiNTED APPROACH
POSTER SESSIONS 247 SPATIAL ANALYSIS IN GEOGRAPHICAL INFORMATION SYSTEMS. A DATA MODEL ORffiNTED APPROACH Kirsi Artimo Helsinki University of Technology Department of Surveying Otakaari 1.02150 Espoo,
What do I do first in ArcView 8.x? When the program starts Select from the Dialog box: A new empty map
www.library.carleton.ca/find/gis Introduction Introduction to Georeferenced Images using ArcGIS Georeferenced images such as aerial photographs or satellite images can be used in many ways in both GIS
Tutorial 8 Raster Data Analysis
Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations
Environmental Remote Sensing GEOG 2021
Environmental Remote Sensing GEOG 2021 Lecture 4 Image classification 2 Purpose categorising data data abstraction / simplification data interpretation mapping for land cover mapping use land cover class
Intended Use of the document: Teachers who are using standards based reporting in their classrooms.
Standards Based Grading reports a student s ability to demonstrate mastery of a given standard. This Excel spread sheet is designed to support this method of assessing and reporting student learning. Purpose
Geodatabase Programming with SQL
DevSummit DC February 11, 2015 Washington, DC Geodatabase Programming with SQL Craig Gillgrass Assumptions Basic knowledge of SQL and relational databases Basic knowledge of the Geodatabase We ll hold
Data Validation Online References
Data Validation Online References Submitted To: Program Manager GeoConnections Victoria, BC, Canada Submitted By: Jody Garnett Brent Owens Refractions Research Inc. Suite 400, 1207 Douglas Street Victoria,
A quick overview of geographic information systems (GIS) Uwe Deichmann, DECRG <[email protected]>
A quick overview of geographic information systems (GIS) Uwe Deichmann, DECRG Why is GIS important? A very large share of all types of information has a spatial component ( 80
Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption
Name: Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption Learning Objectives: Assigned: May 30, 2012 Due: June 1, 2012 @ 9 AM 1. Learn
Guidance for Flood Risk Analysis and Mapping. Changes Since Last FIRM
Guidance for Flood Risk Analysis and Mapping Changes Since Last FIRM May 2014 This guidance document supports effective and efficient implementation of flood risk analysis and mapping standards codified
Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored.
In this lesson you will create a Digital Elevation Model (DEM). A DEM is a gridded array of elevations. In its raw form it is an ASCII, or text, file. First, you will interpolate elevations on a topographic
Package cgdsr. August 27, 2015
Type Package Package cgdsr August 27, 2015 Title R-Based API for Accessing the MSKCC Cancer Genomics Data Server (CGDS) Version 1.2.5 Date 2015-08-25 Author Anders Jacobsen Maintainer Augustin Luna
Raster Operations. Local, Neighborhood, and Zonal Approaches. Rebecca McLain Geography 575 Fall 2009. Raster Operations Overview
Raster Operations Local, Neighborhood, and Zonal Approaches Rebecca McLain Geography 575 Fall 2009 Raster Operations Overview Local: Operations performed on a cell by cell basis Neighborhood: Operations
Under GIS Data select Hydrography This will show all of the state-wide options for hydrography data. For this project, we want the seventh entry in
Introductory Exercises for GIS Using ArcMap & ArcCatalog GIS Cyberinfrastructure Module EEB 5894, section 10 Please refer to the ESRI online GIS Dictionary for additional details on any of the terms in
Cafcam: Crisp And Fuzzy Classification Accuracy Measurement Software
Cafcam: Crisp And Fuzzy Classification Accuracy Measurement Software Mohamed A. Shalan 1, Manoj K. Arora 2 and John Elgy 1 1 School of Engineering and Applied Sciences, Aston University, Birmingham, UK
Home Range Estimation in R: the adehabitathr Package
Home Range Estimation in R: the adehabitathr Package Clement Calenge, Office national de la classe et de la faune sauvage Saint Benoist 78610 Auffargis France. Mar 2015 Contents 1 History of the package
Getting Started with the ArcGIS Predictive Analysis Add-In
Getting Started with the ArcGIS Predictive Analysis Add-In Table of Contents ArcGIS Predictive Analysis Add-In....................................... 3 Getting Started 4..............................................
A GIS helps you answer questions and solve problems by looking at your data in a way that is quickly understood and easily shared.
A Geographic Information System (GIS) integrates hardware, software, and data for capturing, managing, analyzing, and displaying all forms of geographically referenced information. GIS allows us to view,
Spatial Analyst Tutorial
Copyright 1995-2010 Esri All rights reserved. Table of Contents About the ArcGIS Spatial Analyst Tutorial......................... 3 Exercise 1: Preparing for analysis............................ 5 Exercise
Oracle8i Spatial: Experiences with Extensible Databases
Oracle8i Spatial: Experiences with Extensible Databases Siva Ravada and Jayant Sharma Spatial Products Division Oracle Corporation One Oracle Drive Nashua NH-03062 {sravada,jsharma}@us.oracle.com 1 Introduction
Lecture 25: Database Notes
Lecture 25: Database Notes 36-350, Fall 2014 12 November 2014 The examples here use http://www.stat.cmu.edu/~cshalizi/statcomp/ 14/lectures/23/baseball.db, which is derived from Lahman s baseball database
Three daily lessons. Year 5
Unit 6 Perimeter, co-ordinates Three daily lessons Year 4 Autumn term Unit Objectives Year 4 Measure and calculate the perimeter of rectangles and other Page 96 simple shapes using standard units. Suggest
Drawing Lines with Pixels. Joshua Scott March 2012
Drawing Lines with Pixels Joshua Scott March 2012 1 Summary Computers draw lines and circles during many common tasks, such as using an image editor. But how does a computer know which pixels to darken
Topology. Shapefile versus Coverage Views
Topology Defined as the the science and mathematics of relationships used to validate the geometry of vector entities, and for operations such as network tracing and tests of polygon adjacency Longley
Package copa. R topics documented: August 9, 2016
Package August 9, 2016 Title Functions to perform cancer outlier profile analysis. Version 1.41.0 Date 2006-01-26 Author Maintainer COPA is a method to find genes that undergo
KaleidaGraph Quick Start Guide
KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.
Files Used in this Tutorial
Generate Point Clouds Tutorial This tutorial shows how to generate point clouds from IKONOS satellite stereo imagery. You will view the point clouds in the ENVI LiDAR Viewer. The estimated time to complete
Introduction to Geographic Information Systems. A brief overview of what you need to know before learning How to use any GIS software packages
Introduction to Geographic Information Systems A brief overview of what you need to know before learning How to use any GIS software packages 1 What is GIS? More than map-making software GIS is a system
ILWIS 3.8 Map Visualization Based on ILWIS 3.8.3
http://52north.org ILWIS 3.8 Map Visualization Based on ILWIS 3.8.3 1 Revision History Revision Number Date of Publication Author(s) Change Description 0.9 February 14, 2013 Martin L. Schouwenburg initialization,
What is GIS? Geographic Information Systems. Introduction to ArcGIS. GIS Maps Contain Layers. What Can You Do With GIS? Layers Can Contain Features
What is GIS? Geographic Information Systems Introduction to ArcGIS A database system in which the organizing principle is explicitly SPATIAL For CPSC 178 Visualization: Data, Pixels, and Ideas. What Can
Package MBA. February 19, 2015. Index 7. Canopy LIDAR data
Version 0.0-8 Date 2014-4-28 Title Multilevel B-spline Approximation Package MBA February 19, 2015 Author Andrew O. Finley , Sudipto Banerjee Maintainer Andrew
G.H. Raisoni College of Engineering, Nagpur. Department of Information Technology
Practical List 1) WAP to implement line generation using DDA algorithm 2) WAP to implement line using Bresenham s line generation algorithm. 3) WAP to generate circle using circle generation algorithm
Introduction of geospatial data visualization and geographically weighted reg
Introduction of geospatial data visualization and geographically weighted regression (GWR) Vanderbilt University August 16, 2012 Study Background Study Background Data Overview Algorithm (1) Information
GIS EXAM #2 QUERIES. Attribute queries only looks at the records in the attribute tables to some kind of
GIS EXAM #2 QUERIES - Queries extracts particular records from a table or feature class for use; - Queries are an essential aspect of GIS analysis, and allows us to interrogate a dataset and look for patterns;
SPATIAL DATA ANALYSIS
SPATIAL DATA ANALYSIS P.L.N. Raju Geoinformatics Division Indian Institute of Remote Sensing, Dehra Dun Abstract : Spatial analysis is the vital part of GIS. Spatial analysis in GIS involves three types
Introduction to GIS. Dr F. Escobar, Assoc Prof G. Hunter, Assoc Prof I. Bishop, Dr A. Zerger Department of Geomatics, The University of Melbourne
Introduction to GIS 1 Introduction to GIS http://www.sli.unimelb.edu.au/gisweb/ Dr F. Escobar, Assoc Prof G. Hunter, Assoc Prof I. Bishop, Dr A. Zerger Department of Geomatics, The University of Melbourne
isolar Integrated Solution for AUTOSAR
Integrated Solution for AUTOSAR isolar Integrated Solution for AUTOSAR 1 Integrated Solution for AUTOSAR An integrated solution for configuration of AUTOSAR compliant embedded software Supports configuration
About PivotTable reports
Page 1 of 8 Excel Home > PivotTable reports and PivotChart reports > Basics Overview of PivotTable and PivotChart reports Show All Use a PivotTable report to summarize, analyze, explore, and present summary
The Spatiotemporal Visualization of Historical Earthquake Data in Yellowstone National Park Using ArcGIS
The Spatiotemporal Visualization of Historical Earthquake Data in Yellowstone National Park Using ArcGIS GIS and GPS Applications in Earth Science Paul Stevenson, pts453 December 2013 Problem Formulation
CATIA: Navigating the CATIA V5 environment. D. CHABLAT / S. CARO [email protected]
CATIA: Navigating the CATIA V5 environment D. CHABLAT / S. CARO [email protected] Standard Screen Layout 5 4 6 7 1 2 3 8 9 10 11 12 13 14 15 D. Chablat / S. Caro -- Institut de Recherche
Lecture 3: Models of Spatial Information
Lecture 3: Models of Spatial Information Introduction In the last lecture we discussed issues of cartography, particularly abstraction of real world objects into points, lines, and areas for use in maps.
Introduction to Algebraic Geometry. Bézout s Theorem and Inflection Points
Introduction to Algebraic Geometry Bézout s Theorem and Inflection Points 1. The resultant. Let K be a field. Then the polynomial ring K[x] is a unique factorisation domain (UFD). Another example of a
APPENDICES. Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm
APPENDICES Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm Appendix 2 The MapPlace Toolbar and Popup Menu http://www.em.gov.bc.ca/mining/geolsurv/mapplace/menudesc.htm
GEOGRAPHIC INFORMATION SYSTEMS
GEOGRAPHIC INFORMATION SYSTEMS WHAT IS A GEOGRAPHIC INFORMATION SYSTEM? A geographic information system (GIS) is a computer-based tool for mapping and analyzing spatial data. GIS technology integrates
Introduction to PostGIS
Tutorial ID: IGET_WEBGIS_002 This tutorial has been developed by BVIEER as part of the IGET web portal intended to provide easy access to geospatial education. This tutorial is released under the Creative
Lecture 1: Systems of Linear Equations
MTH Elementary Matrix Algebra Professor Chao Huang Department of Mathematics and Statistics Wright State University Lecture 1 Systems of Linear Equations ² Systems of two linear equations with two variables
GeoGebra. 10 lessons. Gerrit Stols
GeoGebra in 10 lessons Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It was developed by Markus Hohenwarter
Journal of Statistical Software
JSS Journal of Statistical Software February 2015, Volume 63, Issue 5. http://www.jstatsoft.org/ plotkml: Scientific Visualization of Spatio-Temporal Data Tomislav Hengl ISRIC World Soil Information the
TABLE OF CONTENTS. 7. shapefile..59. shapefile... 45. 4. shapefile
ArcView 8.3. Johansson, T.,.,.: e-learning MINERVA GISAS, ) 2005. Mr. Tino Johansson University of Helsinki, Finland.. 2. (Print Screen shots) ArcCatalog ArcMap. copyright ESRI, Inc. GISAS, MINERVA 2003-2006.
http://school-maths.com Gerrit Stols
For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It
10. Creating and Maintaining Geographic Databases. Learning objectives. Keywords and concepts. Overview. Definitions
10. Creating and Maintaining Geographic Databases Geographic Information Systems and Science SECOND EDITION Paul A. Longley, Michael F. Goodchild, David J. Maguire, David W. Rhind 005 John Wiley and Sons,
Bedford, Fowler: Statics. Chapter 4: System of Forces and Moments, Examples via TK Solver
System of Forces and Moments Introduction The moment vector of a force vector,, with respect to a point has a magnitude equal to the product of the force magnitude, F, and the perpendicular distance from
WHAT IS GIS - AN INRODUCTION
WHAT IS GIS - AN INRODUCTION GIS DEFINITION GIS is an acronym for: Geographic Information Systems Geographic This term is used because GIS tend to deal primarily with geographic or spatial features. Information
Graphic Design. Background: The part of an artwork that appears to be farthest from the viewer, or in the distance of the scene.
Graphic Design Active Layer- When you create multi layers for your images the active layer, or the only one that will be affected by your actions, is the one with a blue background in your layers palette.
Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map!
Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map! Overview 1. A GIS is NOT a Map! 2. How does a GIS handle its data? Data Formats! GARP 0344 (Fall 2013) Page 1 Dr. Carsten Braun 1) A
jexcel plugin user manual v0.2
jexcel plugin user manual v0.2 Contents Introduction 1 Installation 1 Loading a table from an Excel spreadsheet 1 Data source properties 2 General tab (default) 2 Advanced tab 3 Loading a layer from an
APPLICATIONS OF GIS IN INFRASTRUCTURE PROJECT MANAGEMENT
Int. J. Struct. & Civil Engg. Res. 2013 Sandip N Palve, 2013 Research Paper ISSN 2319 6009 www.ijscer.com Vol. 2, No. 4, November 2013 2013 IJSCER. All Rights Reserved APPLICATIONS OF GIS IN INFRASTRUCTURE
Psychology 205: Research Methods in Psychology
Psychology 205: Research Methods in Psychology Using R to analyze the data for study 2 Department of Psychology Northwestern University Evanston, Illinois USA November, 2012 1 / 38 Outline 1 Getting ready
Package treemap. February 15, 2013
Type Package Title Treemap visualization Version 1.1-1 Date 2012-07-10 Author Martijn Tennekes Package treemap February 15, 2013 Maintainer Martijn Tennekes A treemap is a space-filling
CS1112 Spring 2014 Project 4. Objectives. 3 Pixelation for Identity Protection. due Thursday, 3/27, at 11pm
CS1112 Spring 2014 Project 4 due Thursday, 3/27, at 11pm You must work either on your own or with one partner. If you work with a partner you must first register as a group in CMS and then submit your
Mosaicking and Subsetting Images
Mosaicking and Subsetting Images Using SAGA GIS Tutorial ID: IGET_RS_005 This tutorial has been developed by BVIEER as part of the IGET web portal intended to provide easy access to geospatial education.
ArcFuels Supplemental Material: GIS 9.x Tips and Tricks
ArcFuels Supplemental Material: GIS 9.x Tips and Tricks Supplemental material: GIS Tips and Tricks... 1 Shapefiles: Points, Lines, and Polygons... 2 Creating a New Shapefile (point, line, or polygon)...
THREE DIMENSIONAL GEOMETRY
Chapter 8 THREE DIMENSIONAL GEOMETRY 8.1 Introduction In this chapter we present a vector algebra approach to three dimensional geometry. The aim is to present standard properties of lines and planes,
Quickstart for Desktop Version
Quickstart for Desktop Version What is GeoGebra? Dynamic Mathematics Software in one easy-to-use package For learning and teaching at all levels of education Joins interactive 2D and 3D geometry, algebra,
Comparison of Programs for Fixed Kernel Home Range Analysis
1 of 7 5/13/2007 10:16 PM Comparison of Programs for Fixed Kernel Home Range Analysis By Brian R. Mitchell Adjunct Assistant Professor Rubenstein School of Environment and Natural Resources University
User s Guide to ArcView 3.3 for Land Use Planners in Puttalam District
User s Guide to ArcView 3.3 for Land Use Planners in Puttalam District Dilhari Weragodatenna IUCN Sri Lanka, Country Office Table of Content Page No Introduction...... 1 1. Getting started..... 2 2. Geo-referencing...
