Maps 1 EPID 799C Fall 2017.

Slides:



Advertisements
Similar presentations
Frank DeSimone Senior MicroStation Application Engineer
Advertisements

GUS: 0262 Fundamentals of GIS
Review of Key Geographic Concepts and Principals Nancy Lemay, University of Ottawa Barbara Znamirowski, Trent University Jenny Marvin, Guelph University.
ESRI Software ArcGIS –ArcMap –ArcEdit –ArcInfo –ArcView.
ArcGIS Geodatabase Miles Logsdon Spatial Information Technologies, UW Garry Trudeau - Doonesbury.
NR 422: GIS Review Jim Graham Fall What is GIS? Geographic Information System? Geographic Information Science? A system that provides the ability.
Introduction to the 176A labs and ArcGIS Acknowledgement: Slides by David Maidment, U Texas-Austin and Francisco Olivera (TAMU)
19 th Advanced Summer School in Regional Science An introduction to GIS using ArcGIS.
ArcCatalog and Geodatabases
Problem with GIS Data Lots of different, related files Results in data that is: –Hard to find and share and of questionable quality Need: –Containers for.
Basic Concepts of GIS January 29, What is GIS? “A powerful set of tools for collecting, storing, retrieving, transforming and displaying spatial.
Rebecca Boger Earth and Environmental Sciences Brooklyn College.
Basic GIS Functions and Spatial Stats in
NR 322: Organizing Data Jim Graham Fall GIS Data Flow Project, resample Processing Processed Data Original Data Final data And maps.
1 1 ISyE 6203 Radical Tools Intro To GIS: MapPoint John H. Vande Vate Spring 2012.
Different kinds of data Example of Elevation Topographic DEM (Digital Elevation Model)
GIS concepts, skills and tools
Attributes in ArcGIS. ArcGIS Attributes FID – ESRI’s internal identifier Shape – Actual spatial data.
Intro to GIS and ESRI Trainers: Randy Jones, GIS Technician, Douglas County Jon Fiskness, GISP GIS Coordinator, City of Superior.
Geographic Information Systems Using ESRI ArcGIS 9.3 INTRODUCTION.
Geographical Information Systems. Software which can be used in GIS ArcGIS Desktop Map Window Quantum GIS uDig.
Introducing ArcGIS Chapter 1. Objectives  Understand the architecture of the ArcGIS program.  Become familiar with the types of data files used in ArcGIS.
LBR & WS LAB 1: INTRODUCTION TO GIS.
Build a database V: Create forms for a new Access database Overview: A window into your data So far in this series of courses, you’ve built tables, relationships,
Intro to GIS & Pictometry Trainers: Randy Jones, GIS Technician, Douglas County Jon Fiskness, GISP GIS Coordinator, City of Superior.
Geographic Information Systems
Geographic Information Systems Using ESRI ArcGIS 9.3 Arc Catalog File Management.
Co-sponsored by the MIT Libraries and IS&T GIS Lab website: Advanced ArcGIS.
Topic 10- GIS layers to web
GIS Data Models III GEOG 370 Instructor: Christine Erlien.
What is GIS? “A powerful set of tools for collecting, storing, retrieving, transforming and displaying spatial data”
Uploading Data Matthew Hanson  GeoNode made up of several components  Web Framework – Django  OGC Server – GeoServer  Database – PostGIS.
GIS data formats GIS/CAD5. GIS data „Direct“ spatial data Spatial information is stored within datasets Data representation – Vector data – Raster data.
Lesson 3 GIS Fundamentals MEASURE Evaluation PHFI Training of Trainers May 2011.
GIS Data Shape files, Rasters, Coordinate Systems, ArcGIS.
Problem with GIS Data Lots of different, related files Results in data that is: –Hard to find and share and of questionable quality Need: –Containers for.
Lecture 2: GIS Fundamentals  Data layers  Feature classes  GIS data properties  Data types –vector and raster  Scale  Accuracy and precision.
Chapter 1: GIS Data Outline Representing the world as a map Coordinate systems Map scale Data quality issues About ArcGIS.
GIS and High efficiency routing
University of Texas, Arlington.
Rayat Shikshan Sanstha’s Chhatrapati Shivaji College Satara
Each entity of land has spatial information!
Geog. 314 Working with tables.
Key Terms Attribute join Target table Join table Spatial join.
A Look at Creating & Updating Point Files
INTRODUCTION TO GEOGRAPHICAL INFORMATION SYSTEM
Introduction to GIS.
Spatial Data Model: Basic Data Types
How to pack a punch for free
Geographic Information Systems
Introduction to ArcGIS
Raster and Vector Data.
Preliminaries: -- vector, raster, shapefiles, feature classes.
GTECH 709 GIS Data Formats GIS data formats
Geographic Information Systems
Feature Classes, Data File Formats in ArcGIS
Specifics on Digitizing and More tips on a Layout
Introduction to ArcGIS
Maps 1 EPID 799C Fall 2018.
Learn R! GIS.
Rocco Panciera - UNICEF
ArcCatalog and Geodatabases
LA GIS Council Presentation January 20, 2005
ឧបករណ៍ផលិតផែនទី.
Maps 2 EPID 799C Fall 2017 To code along today:
Sokna Sek – MOH/DPHI Leng Ing – MOH/DPHI Sat Chap – MOH/DPHI
Geoprocessing Sample Tools for Lidar Data Management
Processing Well Data Points to be Used in Google Earth
ArcCatalog and Geodatabases
Working with Temporal Data
Presentation transcript:

Maps 1 EPID 799C Fall 2017

Why make maps (use GIS)? Easy communication. Improve models. Link data.

Types of GIS Data – Points (1/4)

Types of GIS Data - Lines (2/4)

Types of GIS Data – Polygons (3/4)

Types of GIS Data – Raster (4/4)

ESRI (ArcGIS) = The SAS of GIS We won’t use ArcGIS, but it is important to understand because: The most common GIS data format (shapefile) has been inherited from ArcGIS. QGIS (which we will use) is an open-source equivalent to ArcGIS. Due to marketing, investment, certification, etc. you will see a lot of work done in ArcGIS. The file format is a nice introduction to spatial data.

Shapefiles – 90’s relic Most common GIS data format Information stored across many files: .shp geometry feature information (i.e. counties) .shx index of features .dbf attributes of each geometry (i.e. population) .prj projection information .shp.xml metadata (documentation) Imagine if Word documents were split into 5 files…

Geometry Features (.shp) Actually just a list of coordinate sets Software connects each set into a polygon (1,3) X Y 0 0 0 2 1 3 2 2 (0,2) (2,2) (0,0)

Geometry projection (.prj) The earth isn't flat, but maps are! How do the coordinates “stretch” to the earth? TWO Basic Types: Geographic (“GPS”) Latitude/longitude Pseudo-spherical Projected (“Survey”) Feet/meters Rectangular

Geometry attributes (.dbf) Just a regular dataset Each row is a polygon in dataset ID Area Toxins Cases 0 12 1000 10 1 99 0 1 2 120 200 5 3 54 50 2

ESRI/ArcGIS Junk (don't delete!) Shapefile index (.shx) Helps ArcGIS do queries faster Metadata (.shp.xml) Data source, notes, etc. Other (also in .shp) Presence of holes in features Bounding box (maximum map extent) Shape type (point, line, polygon)

Using QGIS Point-and-click; nice for making maps (start in R)

The sp package in R Packs GIS data into an addressable object (with @) You can also use [ ] notation to subset SpatialPointsDataFrame @ @ @ proj4string polygons data bbox $ $ plotOrder var1 var2

Working with spatial data With rgeos and rgdal installed, common data commands will be intuitively translated! plot(myshape) myshape$var1 myshape[1:2,] myshape[myshape$var1==FALSE,] Sp objects work like any other object: mile3 <- gbuffer(myshape,3*5280) cents <- gcentroid(myshape)

Side note: There’s a new structure in town! Simple features (sf) spec – just a dataframe! The spatial information is stored as another “variable’ Not quite as efficient in some ways, but easier to work with. Can eventually overload dplyr functions.

Let’s Try! Prepare your county tbl