Popular Mechanics, 1954

Size: px
Start display at page:

Download "Popular Mechanics, 1954"

Transcription

1 Introduction to GIS

2 Popular Mechanics, 1954

3 1986 $2,599 1 MB of RAM 2017, $750, 128 GB memory, 2 GB of RAM Computing power has increased exponentially over the past 30 years, Allowing the existence of GIS

4 What is a Geographic Information System? A computer-based information system that stores geographically referenced data, links it with nongraphic attributes (data in tables) allowing for a wide range of information processing including manipulation, analysis and modeling. A GIS also provides for map display and production. Information system organized system for the collection, organization, storage and communication of information. In GIS the data is: Spatial i.e., points, lines, polygons, rasters Temporal i.e., containing a time metric (e.g., sea surface temperature for Jan1, 2011) Create interactive queries (user-created searches) Spatial analysis Edit layered data in maps Enable map algebra and maths Present results

5 Common GIS Software ESRI ArcGIS Desktop industry standard GlobalMapper QGIS GIS not limited to the above - most modern programming languages and databases contain packages/syntax to work with spatial data Matlab R Python SQL Server MySQL Combining GIS + Programming: One key to quantitative versus qualitative science Will help get you a job!

6 Why learn GIS and computational skills?

7 ArcGIS editions ArcView Desktop: ArcView ArcEditor ArcInfo Standard Professional Enterprise ArcMap - the main mapping application which allows you to create maps, query attributes, analyze spatial relationships, and layout final projects. ArcCatalog - organizes spatial data contained on your computer and allows for you to search, preview, and add data to ArcMap as well as manage metadata and set up address locator services (geocoding). ArcToolbox - contains tools for geoprocessing, data conversion, coordinate systems, projections, and more. ArcEditor, ArcInfo used with databases ArcMap ArcCatalog ArcToolbox

8 GIS Layer Stack Marine Land Use

9 ArcGIS (and QGIS) Desktop File Types: ShapeFile (.shp) - a vector data storage format for storing the location, shape, and attributes of geographic features. A shapefile is stored in a set of related files (i.e.,.shp,.dbf,.sbn, etc.) and contains one feature class. Layer File(.lyr) - is a file that stores the path to a source dataset and other layer properties, including symbology. In comparison to a shapefile, a layer file is a just a link\reference to actual data, such as a shapefile, feature class, etc. It is not actual data because it does not store the data's attributes or geometry. A layer file primarily stores the symbology for a feature and other layer properties related to what is seen when the data is viewed in a GIS application. So, shape file is the georeferenced data, a layer stylizes the shape file.

10 ArcMap Interface Main Menu Toolbars Map Display Table of Contents Data Frame Page Layout

11 ArcMap Basic Navigation Full Extent Pan Fixed Zoom In/Out Zoom Out Previous/Next Extent Zoom In Zoom In Operate on Data Frame Operate on Layout Zoom Out Pan Zoom Whole Page Fixed Zoom In/Out Previous/Next Extent Zoom 100% ArcMap Querying Unselect Features Select Features Select Elements Go to X/Y Add Data Identify Measure Find

12 ArcMap Desktop Views: Data View: When you want to browse the geographic data on your map, choose data view. Data view is an all-purpose view for exploring, displaying, and querying the data on your map. This view hides all the map elements on the layout, such as titles, north arrows, and scale bars, and lets you focus on the data in a single data frame, for instance, editing or analysis. Layout View: In layout view, you'll see a virtual page on which you can place and arrange map elements, and you can do almost everything you can in data view, plus design your map.

13 a key concept (i.e., test material!)

14 Vector Representation of the world using points, lines, and polygons. Vector models are useful for storing data that has discrete boundaries, such as country borders, land parcels, and streets. Raster A representation of the world as a surface divided into a regular grid of cells. Raster models are useful for storing data that varies continuously, as in an aerial photograph, a satellite image, a surface of chemical concentrations, or an elevation surface. Points (0 dimensional) Points as cells Lines (1 dimensional) Lines as a sequence of cells Polygon (2 dimensional) Polygon as a zone of cells

15 Geographic North Geographic North Pixels Raster Points, lines and polygons Vector Geographic East Geographic East

16 examples of. RASTER VECTOR Digital satellite remote-sensing images Digital aerial photographs Scanned maps or photographs Digital elevation models from topographic map contours GPS measurements Survey measurements Topographic maps Toponymy (placename) databases

17 Geographic North Raster s offer a poor representation of geographic dimensionality Columns 1,1 point (0 dimensional) line (1 dimensional) Rows area (2 dimensional) Geographic East In a raster, points, lines and areas are represented as quantized units of geographic area. Grid structures DO NOT allow precise location information

18 GIS Hierarchy and Databases

19 Layers of GIS Information Municipalities

20 Layers of GIS Information Census Tracts

21 Layers of GIS Information Lakes and Rivers

22 Layers of GIS Information Polluting Companies

23 Layers of GIS Information Schools

24 Maps and Databases are Interactive

25

26 Relational Databases Foundation for many Information Systems, including GIS Organizes data into one or more tables (or "relations") of columns and rows Rows are also called records, columns are fields, and cells are items A unique field (or combination of fields) identifies each row as is called a key (student ID in the below).

27 Relational Databases Rows have keys that are shared and these are called relationships and are used to create joins. Duplication of data is avoided and reuse is an underlying concept SQL (Structured Query Language) is the language for querying and maintaining the database GIS such as ArcGIS can connect to other databases that store data Animal detections + = Bathymetry Bathymetry at animal detection location

28 Relational Databases

29 Relational Databases

30 Spatial data

31 3 basic methods for representing a surface in GIS: DEM (digital elevation model): set of regularly spaced sampled ground points in the x and y dimensions (although spacing not necessarily the same in each) accompanied by an elevation measure (z dimension). The DEM terminology was introduced by USGS. Two concepts used for determining elevation at points within the grid cells: Lattice: each point represents a value on the surface only at the center of the grid cell (vector point) Surface grid considers each sample as a square/rectangular cell with a constant surface value (raster) TIN (Triangulated Irregular Network): a set of adjacent, non-overlapping triangles with x, y coordinates and z vertical elevations for their vertices, along with topological relationship between the triangles and their adjacent neighbors. Contour lines: lines of equal elevation, drawn at a given interval The general term digital terrain model (DTM) may be used to refer to any of the above surface representations when in digital form. DEM sometimes used synonymously with DTM and apply to ocean bathymetry. DEM can be used to represent SSHA, SAL, SST, Geostrophic currents, etc.

32 DEM (Digital Elevation Model) a sampled array of elevations (z) that are at regularly spaced intervals in the x and y directions. two approaches for determining the surface z value of a location between sample points. In a lattice, each mesh point represents a value on the surface only at the center of the grid cell. The z-value is approximated by interpolation between adjacent sample points; it does not imply an area of constant value. A surface grid considers each sample as a square cell with a constant surface value. Advantages Simple conceptual model Data cheap to obtain Easy to relate to other raster data Irregularly spaced set of points can be converted to regular spacing by interpolation Disadvantages Does not conform to variability of the terrain Linear features not well represented

33 Triangulated Irregular Network A set of adjacent, non-overlapping triangles computed from irregularly spaced points, with x, y horizontal coordinates and z vertical elevations. Advantages Can capture significant slope features (ridges, etc) Efficient since require few triangles in flat areas Easy for certain analyses: slope, aspect, volume Disadvantages Analysis involving comparison with other layers difficult

34 The topology of a TIN (source: after Zeiler 1999) Longley et al. 2005

35 TIN surface of Death Valley, California: wireframe showing all triangles shaded by elevation draped with satellite image Longley et al. 2005

36 Contour (isolines) Lines Contour lines, or isolines, of constant elevation at a specified interval, valley hilltop Advantages Familiar to many people Easy to obtain mental picture of surface Close lines = steep slope Uphill V = stream Downhill V or bulge = ridge Circle = hill top or basin Disadvantages Poor for computer representation: no formal digital model Must convert to raster or TIN for analysis Contour generation from point data requires sophisticated interpolation routines, often with specialized software such as ArcView Spatial Analyst extension ridge

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap Lecture 2 Introduction to ESRI s ArcGIS Desktop and ArcMap Outline ESRI What is ArcGIS? ArcGIS Desktop ArcMap Overview Views Layers Attribute Tables Help! Scale Tips and Tricks ESRI Environmental Systems

More information

NR402 GIS Applications in Natural Resources

NR402 GIS Applications in Natural Resources NR402 GIS Applications in Natural Resources Lesson 1 Introduction to GIS Eva Strand, University of Idaho Map of the Pacific Northwest from http://www.or.blm.gov/gis/ Welcome to NR402 GIS Applications in

More information

Welcome to NR502 GIS Applications in Natural Resources. You can take this course for 1 or 2 credits. There is also an option for 3 credits.

Welcome to NR502 GIS Applications in Natural Resources. You can take this course for 1 or 2 credits. There is also an option for 3 credits. Welcome to NR502 GIS Applications in Natural Resources. You can take this course for 1 or 2 credits. There is also an option for 3 credits. The 1st credit consists of a series of readings, demonstration,

More information

Introduction to the 176A labs and ArcGIS

Introduction to the 176A labs and ArcGIS Introduction to the 176A labs and ArcGIS Acknowledgement: Slides by David Maidment, U Texas-Austin and Francisco Olivera (TAMU) Purpose of the labs Hands-on experience with one software pakage Introduction

More information

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work?

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Outline Chapter 1 Introducing ArcGIS What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Basic data formats The ArcCatalog interface 1-1 1-2 A history of products Arc/Info

More information

An Introduction to Geographic Information System

An Introduction to Geographic Information System An Introduction to Geographic Information System PROF. Dr. Yuji MURAYAMA Khun Kyaw Aung Hein 1 July 21,2010 GIS: A Formal Definition A system for capturing, storing, checking, Integrating, manipulating,

More information

Introduction to the 176A labs and ArcGIS Purpose of the labs

Introduction to the 176A labs and ArcGIS Purpose of the labs Introduction to the 176A labs and ArcGIS Purpose of the labs Acknowledgement: Slides by David Maidment, U Texas-Austin and Francisco Olivera (TAMU) Hands-on experience with a leading software package Introduction

More information

Environmental Systems Research Institute

Environmental Systems Research Institute Introduction to ArcGIS ESRI Environmental Systems Research Institute Redlands, California 2 ESRI GIS Development Arc/Info (coverage model) Versions 1-7 from 1980 1999 Arc Macro Language (AML) ArcView (shapefile

More information

ENGRG Introduction to GIS

ENGRG Introduction to GIS ENGRG 59910 Introduction to GIS Michael Piasecki March 17, 2014 Lecture 08: Terrain Analysis Outline: Terrain Analysis Earth Surface Representation Contour TIN Mass Points Digital Elevation Models Slope

More information

ENGRG Introduction to GIS

ENGRG Introduction to GIS ENGRG 59910 Introduction to GIS Michael Piasecki November 17, 2017 Lecture 11: Terrain Analysis Outline: Terrain Analysis Earth Surface Representation Contour TIN Mass Points Digital Elevation Models Slope

More information

GIS CONCEPTS ARCGIS METHODS AND. 2 nd Edition, July David M. Theobald, Ph.D. Natural Resource Ecology Laboratory Colorado State University

GIS CONCEPTS ARCGIS METHODS AND. 2 nd Edition, July David M. Theobald, Ph.D. Natural Resource Ecology Laboratory Colorado State University GIS CONCEPTS AND ARCGIS METHODS 2 nd Edition, July 2005 David M. Theobald, Ph.D. Natural Resource Ecology Laboratory Colorado State University Copyright Copyright 2005 by David M. Theobald. All rights

More information

Fundamentals of ArcGIS Desktop Pathway

Fundamentals of ArcGIS Desktop Pathway Fundamentals of ArcGIS Desktop Pathway Table of Contents ArcGIS Desktop I: Getting Started with GIS 3 ArcGIS Desktop II: Tools and Functionality 5 Understanding Geographic Data 8 Understanding Map Projections

More information

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS.

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS. Online GIS Training and training modules covered are: 1. ArcGIS, Analysis, Fundamentals and Implementation 2. ArcGIS Web Data Sharing 3. ArcGIS for Desktop 4. ArcGIS for Server These modules are covered

More information

GIS Boot Camp for Education June th, 2011 Day 1. Instructor: Sabah Jabbouri Phone: (253) x 4854 Office: TC 136

GIS Boot Camp for Education June th, 2011 Day 1. Instructor: Sabah Jabbouri Phone: (253) x 4854 Office: TC 136 GIS Boot Camp for Education June 27-30 th, 2011 Day 1 Instructor: Sabah Jabbouri Phone: (253) 833-9111 x 4854 Office: TC 136 Email: sjabbouri@greenriver.edu http://www.instruction.greenriver.edu/gis/ Summer

More information

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-2 Chapters 3 and 4

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-2 Chapters 3 and 4 Applied Cartography and Introduction to GIS GEOG 2017 EL Lecture-2 Chapters 3 and 4 Vector Data Modeling To prepare spatial data for computer processing: Use x,y coordinates to represent spatial features

More information

UNIT 4: USING ArcGIS. Instructor: Emmanuel K. Appiah-Adjei (PhD) Department of Geological Engineering KNUST, Kumasi

UNIT 4: USING ArcGIS. Instructor: Emmanuel K. Appiah-Adjei (PhD) Department of Geological Engineering KNUST, Kumasi UNIT 4: USING ArcGIS Instructor: Emmanuel K. Appiah-Adjei (PhD) Department of Geological Engineering KNUST, Kumasi Getting to Know ArcGIS ArcGIS is an integrated collection of GIS software products ArcGIS

More information

Lecture 1 Introduction to GIS. Dr. Zhang Spring, 2017

Lecture 1 Introduction to GIS. Dr. Zhang Spring, 2017 Lecture 1 Introduction to GIS Dr. Zhang Spring, 2017 Topics of the course Using and making maps Navigating GIS Map design Working with spatial data Geoprocessing Spatial data infrastructure Digitizing

More information

2G1/3G4 GIS TUTORIAL >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

2G1/3G4 GIS TUTORIAL >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> > University of Michigan >Taubman College of Architecture > ARCH 552, Perimeter @ Work Out [T]here, Fall 2009 >September 24, 2009 2G1/3G4 GIS TUTORIAL >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

More information

GIS CONCEPTS ARCGIS METHODS AND. 3 rd Edition, July David M. Theobald, Ph.D. Warner College of Natural Resources Colorado State University

GIS CONCEPTS ARCGIS METHODS AND. 3 rd Edition, July David M. Theobald, Ph.D. Warner College of Natural Resources Colorado State University GIS CONCEPTS AND ARCGIS METHODS 3 rd Edition, July 2007 David M. Theobald, Ph.D. Warner College of Natural Resources Colorado State University Copyright Copyright 2007 by David M. Theobald. All rights

More information

Introduction to GIS. Geol 4048 Geological Applications of Remote Sensing

Introduction to GIS. Geol 4048 Geological Applications of Remote Sensing Introduction to GIS Geol 4048 Geological Applications of Remote Sensing GIS History: Before Computers GIS History Using maps for a long time Dr. Roger F. Tomlinson Father of GIS He was an English geographer

More information

Learning ArcGIS: Introduction to ArcCatalog 10.1

Learning ArcGIS: Introduction to ArcCatalog 10.1 Learning ArcGIS: Introduction to ArcCatalog 10.1 Estimated Time: 1 Hour Information systems help us to manage what we know by making it easier to organize, access, manipulate, and apply knowledge to the

More information

Techniques for Science Teachers: Using GIS in Science Classrooms.

Techniques for Science Teachers: Using GIS in Science Classrooms. Techniques for Science Teachers: Using GIS in Science Classrooms. After ESRI, 2008 GIS A Geographic Information System A collection of computer hardware, software, and geographic data used together for

More information

Introduction to GIS I

Introduction to GIS I Introduction to GIS Introduction How to answer geographical questions such as follows: What is the population of a particular city? What are the characteristics of the soils in a particular land parcel?

More information

GEOGRAPHY 350/550 Final Exam Fall 2005 NAME:

GEOGRAPHY 350/550 Final Exam Fall 2005 NAME: 1) A GIS data model using an array of cells to store spatial data is termed: a) Topology b) Vector c) Object d) Raster 2) Metadata a) Usually includes map projection, scale, data types and origin, resolution

More information

Week 01 Lecture Notes Antelope Valley College Geography 205

Week 01 Lecture Notes Antelope Valley College Geography 205 I. Introduction to GIS a. Tonight we ll discuss i. What GIS is and isn t ii. Software iii. Data iv. Documents v. File Structure II. GIS a. What it is i. Geographic Information Systems ii. A way of storing,

More information

INTRODUCTION TO ARCGIS Version 10.*

INTRODUCTION TO ARCGIS Version 10.* Week 3 INTRODUCTION TO ARCGIS Version 10.* topics of the week Overview of ArcGIS Using ArcCatalog Overview of ArcGIS Desktop ArcGIS Overview Scalable desktop applications ArcView ArcEditor ArcInfo ArcGIS

More information

Display data in a map-like format so that geographic patterns and interrelationships are visible

Display data in a map-like format so that geographic patterns and interrelationships are visible Vilmaliz Rodríguez Guzmán M.S. Student, Department of Geology University of Puerto Rico at Mayagüez Remote Sensing and Geographic Information Systems (GIS) Reference: James B. Campbell. Introduction to

More information

Geodatabase Management Pathway

Geodatabase Management Pathway Geodatabase Management Pathway Table of Contents ArcGIS Desktop II: Tools and Functionality 3 ArcGIS Desktop III: GIS Workflows and Analysis 6 Building Geodatabases 8 Data Management in the Multiuser Geodatabase

More information

Introduction-Overview. Why use a GIS? What can a GIS do? Spatial (coordinate) data model Relational (tabular) data model

Introduction-Overview. Why use a GIS? What can a GIS do? Spatial (coordinate) data model Relational (tabular) data model Introduction-Overview Why use a GIS? What can a GIS do? How does a GIS work? GIS definitions Spatial (coordinate) data model Relational (tabular) data model intro_gis.ppt 1 Why use a GIS? An extension

More information

SRJC Applied Technology 54A Introduction to GIS

SRJC Applied Technology 54A Introduction to GIS SRJC Applied Technology 54A Introduction to GIS Overview Lecture of Geographic Information Systems Fall 2004 Santa Rosa Junior College Presented By: Tim Pudoff, GIS Coordinator, County of Sonoma, Information

More information

Overview key concepts and terms (based on the textbook Chang 2006 and the practical manual)

Overview key concepts and terms (based on the textbook Chang 2006 and the practical manual) Introduction Geo-information Science (GRS-10306) Overview key concepts and terms (based on the textbook 2006 and the practical manual) Introduction Chapter 1 Geographic information system (GIS) Geographically

More information

Introduction to GIS. Phil Guertin School of Natural Resources and the Environment GeoSpatial Technologies

Introduction to GIS. Phil Guertin School of Natural Resources and the Environment GeoSpatial Technologies Introduction to GIS Phil Guertin School of Natural Resources and the Environment dguertin@cals.arizona.edu Mapping GeoSpatial Technologies Traditional Survey Global Positioning Systems (GPS) Remote Sensing

More information

Lecture 2. A Review: Geographic Information Systems & ArcGIS Basics

Lecture 2. A Review: Geographic Information Systems & ArcGIS Basics Lecture 2 A Review: Geographic Information Systems & ArcGIS Basics GIS Overview Types of Maps Symbolization & Classification Map Elements GIS Data Models Coordinate Systems and Projections Scale Geodatabases

More information

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands.

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. GIS LAB 7 The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. This lab will ask you to work with the Spatial Analyst extension.

More information

Course overview. Grading and Evaluation. Final project. Where and When? Welcome to REM402 Applied Spatial Analysis in Natural Resources.

Course overview. Grading and Evaluation. Final project. Where and When? Welcome to REM402 Applied Spatial Analysis in Natural Resources. Welcome to REM402 Applied Spatial Analysis in Natural Resources Eva Strand, University of Idaho Map of the Pacific Northwest from http://www.or.blm.gov/gis/ Where and When? Lectures Monday & Wednesday

More information

GIS IN ECOLOGY: ANALYZING RASTER DATA

GIS IN ECOLOGY: ANALYZING RASTER DATA GIS IN ECOLOGY: ANALYZING RASTER DATA Contents Introduction... 2 Raster Tools and Functionality... 2 Data Sources... 3 Tasks... 4 Getting Started... 4 Creating Raster Data... 5 Statistics... 8 Surface

More information

GIS Software. Evolution of GIS Software

GIS Software. Evolution of GIS Software GIS Software The geoprocessing engines of GIS Major functions Collect, store, mange, query, analyze and present Key terms Program collections of instructions to manipulate data Package integrated collection

More information

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE)

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) PART 2: Analysis in ArcGIS (THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) Step 1: Start ArcCatalog and open a geodatabase If you have a shortcut icon for ArcCatalog on your desktop, double-click it to start

More information

EEOS 381 -Spatial Databases and GIS Applications

EEOS 381 -Spatial Databases and GIS Applications EEOS 381 -Spatial Databases and GIS Applications Lecture 5 Geodatabases What is a Geodatabase? Geographic Database ESRI-coined term A standard RDBMS that stores and manages geographic data A modern object-relational

More information

Introduction to Geographic Information Systems (GIS): Environmental Science Focus

Introduction to Geographic Information Systems (GIS): Environmental Science Focus Introduction to Geographic Information Systems (GIS): Environmental Science Focus September 9, 2013 We will begin at 9:10 AM. Login info: Username:!cnrguest Password: gocal_bears Instructor: Domain: CAMPUS

More information

4. GIS Implementation of the TxDOT Hydrology Extensions

4. GIS Implementation of the TxDOT Hydrology Extensions 4. GIS Implementation of the TxDOT Hydrology Extensions A Geographic Information System (GIS) is a computer-assisted system for the capture, storage, retrieval, analysis and display of spatial data. It

More information

Working with ArcGIS: Classification

Working with ArcGIS: Classification Working with ArcGIS: Classification 2 Abbreviations D-click R-click TOC Double Click Right Click Table of Content Introduction The benefit from the use of geographic information system (GIS) software is

More information

Geography 38/42:376 GIS II. Topic 1: Spatial Data Representation and an Introduction to Geodatabases. The Nature of Geographic Data

Geography 38/42:376 GIS II. Topic 1: Spatial Data Representation and an Introduction to Geodatabases. The Nature of Geographic Data Geography 38/42:376 GIS II Topic 1: Spatial Data Representation and an Introduction to Geodatabases Chapters 3 & 4: Chang (Chapter 4: DeMers) The Nature of Geographic Data Features or phenomena occur as

More information

Introduction to Geographic Information Systems

Introduction to Geographic Information Systems Introduction to Geographic Information Systems Lynn_Carlson@brown.edu 401-863-9917 The Environmental And Remote TecHnologies Lab MacMillan Hall, Room 105 http://www.brown.edu/research/earthlab/ Outline

More information

In this exercise we will learn how to use the analysis tools in ArcGIS with vector and raster data to further examine potential building sites.

In this exercise we will learn how to use the analysis tools in ArcGIS with vector and raster data to further examine potential building sites. GIS Level 2 In the Introduction to GIS workshop we filtered data and visually examined it to determine where to potentially build a new mixed use facility. In order to get a low interest loan, the building

More information

INTRODUCTION TO GIS. Dr. Ori Gudes

INTRODUCTION TO GIS. Dr. Ori Gudes INTRODUCTION TO GIS Dr. Ori Gudes Outline of the Presentation What is GIS? What s the rational for using GIS, and how GIS can be used to solve problems? Explore a GIS map and get information about map

More information

Working with Digital Elevation Models in ArcGIS 8.3

Working with Digital Elevation Models in ArcGIS 8.3 Working with Digital Elevation Models in ArcGIS 8.3 The homework that you need to turn in is found at the end of this document. This lab continues your introduction to using the Spatial Analyst Extension

More information

All About Spatial Data. Find it, Manage it, Use it

All About Spatial Data. Find it, Manage it, Use it All About Spatial Data Find it, Manage it, Use it Workshop Outline Define spatial data Spatial data formats Data Sources Metadata Evaluating Spatial Data Data Management Activities: define spatial data,

More information

Acknowledgments xiii Preface xv. GIS Tutorial 1 Introducing GIS and health applications 1. What is GIS? 2

Acknowledgments xiii Preface xv. GIS Tutorial 1 Introducing GIS and health applications 1. What is GIS? 2 Acknowledgments xiii Preface xv GIS Tutorial 1 Introducing GIS and health applications 1 What is GIS? 2 Spatial data 2 Digital map infrastructure 4 Unique capabilities of GIS 5 Installing ArcView and the

More information

Introduction INTRODUCTION TO GIS GIS - GIS GIS 1/12/2015. New York Association of Professional Land Surveyors January 22, 2015

Introduction INTRODUCTION TO GIS GIS - GIS GIS 1/12/2015. New York Association of Professional Land Surveyors January 22, 2015 New York Association of Professional Land Surveyors January 22, 2015 INTRODUCTION TO GIS Introduction GIS - GIS GIS 1 2 What is a GIS Geographic of or relating to geography the study of the physical features

More information

Hydrology and Floodplain Analysis, Chapter 10

Hydrology and Floodplain Analysis, Chapter 10 Hydrology and Floodplain Analysis, Chapter 10 Hydrology and Floodplain Analysis, Chapter 10.1 Introduction to GIS GIS Geographical Information System Spatial Data Data linked with geographical location

More information

GIS MANUAL VOLUME I DEPARTMENT OF GEOGRAPHY UNIVERSITY OF COLOMBO. L. Manawadu V.P.I.S. Wijeratne S.M.A.T. Nandaseela P. Ranasinghe M.A.D.

GIS MANUAL VOLUME I DEPARTMENT OF GEOGRAPHY UNIVERSITY OF COLOMBO. L. Manawadu V.P.I.S. Wijeratne S.M.A.T. Nandaseela P. Ranasinghe M.A.D. i 2016 GIS MANUAL VOLUME I L. Manawadu V.P.I.S. Wijeratne S.M.A.T. Nandaseela P. Ranasinghe M.A.D. Samanmali ii TABLE OF CONTENT 01 INTRODUCTION TO GIS 01 1.1.Introduction 01 1.2.Definition and Overview

More information

Performing Map Cartography. using Esri Production Mapping

Performing Map Cartography. using Esri Production Mapping AGENDA Performing Map Cartography Presentation Title using Esri Production Mapping Name of Speaker Company Name Kannan Jayaraman Agenda Introduction What s New in ArcGIS 10.1 ESRI Production Mapping Mapping

More information

GEOGRAPHIC INFORMATION SYSTEMS

GEOGRAPHIC INFORMATION SYSTEMS GEOGRAPHIC INFORMATION SYSTEMS 4-H Round-Up Community Transitions Workshop Daniel Hanselka June 14, 2011 Goals of the Workshop Answer the question: What is GIS? Uses of GIS. Some of the Common Terminology

More information

GIS Data Production and Editing Pathway

GIS Data Production and Editing Pathway GIS Data Production and Editing Pathway Table of Contents ArcGIS Desktop II: Tools and Functionality 3 ArcGIS Desktop III: GIS Workflows and Analysis 6 Building Geodatabases 8 Creating and Maintaining

More information

Introduction to Coastal GIS

Introduction to Coastal GIS Held on Tues, 1/8/13 through Thurs, 1/10/13 Location: Roger Williams University, Bristol, RI Audience: The intended audiences for this course are federal and state personnel, municipal staff and officials,

More information

Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9

Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9 Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9 1 TABLE OF CONTENTS INTRODUCTION...3 WORKING WITH DIGITAL TERRAIN MODEL (DTM) DATA FROM NRVIS, CITY OF KITCHENER, AND CITY OF

More information

GIS IN ECOLOGY: ANALYZING RASTER DATA

GIS IN ECOLOGY: ANALYZING RASTER DATA GIS IN ECOLOGY: ANALYZING RASTER DATA Contents Introduction... 2 Tools and Functionality for Raster Data... 2 Data Sources... 3 Tasks... 4 Getting Started... 4 Creating Raster Data... 5 Summary Statistics...

More information

Today: GEOL 452/552 - GIS for Geoscientists I. Lecture 3 - Chapter 1. GIS vector Data (review) Let s annotate this layer (draw on paper)

Today: GEOL 452/552 - GIS for Geoscientists I. Lecture 3 - Chapter 1. GIS vector Data (review) Let s annotate this layer (draw on paper) Today: GEOL 452/552 - GIS for Geoscientists I Lecture 3 - Chapter 1 GIS vector data - review raster data history: ArcView/ArcINFO - ArcGIS types of GIS data files Lab: finish Ch. 1 tutorial and HW1 Please

More information

Understanding Geographic Information System GIS

Understanding Geographic Information System GIS Understanding Geographic Information System GIS What do we know about GIS? G eographic I nformation Maps Data S ystem Computerized What do we know about maps? Types of Maps (Familiar Examples) Street Maps

More information

Census Mapping with ArcGIS

Census Mapping with ArcGIS Census Mapping with ArcGIS Jin Lee, GIS manager at the Lewis Mumford Center and Center for Social and Demographic Analysis Email: jwlee@albany.edu Phone: 442-5402 Quick summary of Day1 http://csda.albany.edu/events-news/gisworkshop_outline_fall_3-1.pdf

More information

Watershed Delineation

Watershed Delineation Watershed Delineation Jessica L. Watkins, University of Georgia 2 April 2009 Updated by KC Love February 25, 2011 PURPOSE For this project, I delineated watersheds for the Coweeta synoptic sampling area

More information

Working with Digital Elevation Models and Spot Heights in ArcMap

Working with Digital Elevation Models and Spot Heights in ArcMap Working with Digital Elevation Models and Spot Heights in ArcMap 10.3.1 1 TABLE OF CONTENTS INTRODUCTION... 3 WORKING WITH SPOT HEIGHTS FROM NRVIS, CITY OF KITCHENER, AND CITY OF TORONTO...4 WORKING WITH

More information

GIS Geographic Information System

GIS Geographic Information System GIS Geographic Information System Andrea Petroselli Tuscia University, Italy petro@unitus.it SUMMARY Part 1: Part 2: Part 3: Part 4: What is a GIS? Why do we need a GIS? Which are the possibilities of

More information

EnvSci 360 Computer and Analytical Cartography

EnvSci 360 Computer and Analytical Cartography EnvSci 360 Computer and Analytical Cartography Lecture 7 Mapping Images, Surfaces, and 3-D Data Brief Overview of Imagery What is Imagery? A spatial data model that defines space as an array of equally

More information

Lecture 1 Intro to GIS and GIS Vector and Raster Data Models

Lecture 1 Intro to GIS and GIS Vector and Raster Data Models Lecture 1 Intro to GIS and GIS Vector and Raster Data Models Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Object GIS layer Use Hydro Pole utilities utility

More information

GIS = Geographic Information Systems;

GIS = Geographic Information Systems; What is GIS GIS = Geographic Information Systems; What Information are we talking about? Information about anything that has a place (e.g. locations of features, address of people) on Earth s surface,

More information

Version 1.1 GIS Syllabus

Version 1.1 GIS Syllabus GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION Version 1.1 GIS Syllabus Endorsed 1 Version 1 January 2007 GIS Certification Programme 1. Target The GIS certification is aimed at: Those who wish to demonstrate

More information

Determining the Location of the Simav Fault

Determining the Location of the Simav Fault Lindsey German May 3, 2012 Determining the Location of the Simav Fault 1. Introduction and Problem Formulation: The issue I will be focusing on involves interpreting the location of the Simav fault in

More information

Section 1: Getting to know GIS. Chapter 1. Introducing GIS

Section 1: Getting to know GIS. Chapter 1. Introducing GIS Section 1: Getting to know GIS Chapter 1 Introducing GIS 2 Section 1: Getting to know GIS For a long time, people have studied the world using models such as maps and globes. In the last thirty years or

More information

What is GIS? Introduction to data. Introduction to data modeling

What is GIS? Introduction to data. Introduction to data modeling What is GIS? Introduction to data Introduction to data modeling 2 A GIS is similar, layering mapped information in a computer to help us view our world as a system A Geographic Information System is a

More information

Geometric Algorithms in GIS

Geometric Algorithms in GIS Geometric Algorithms in GIS GIS Software Dr. M. Gavrilova GIS System What is a GIS system? A system containing spatially referenced data that can be analyzed and converted to new information for a specific

More information

GEO-DATA INPUT AND CONVERSION. Christos G. Karydas,, Dr. Lab of Remote Sensing and GIS Director: Prof. N. Silleos

GEO-DATA INPUT AND CONVERSION. Christos G. Karydas,, Dr. Lab of Remote Sensing and GIS Director: Prof. N. Silleos Christos G. Karydas,, Dr. xkarydas@agro.auth.gr http://users.auth.gr/xkarydas Lab of Remote Sensing and GIS Director: Prof. N. Silleos School of Agriculture Aristotle University of Thessaloniki, GR 1 0.

More information

Among various open-source GIS programs, QGIS can be the best suitable option which can be used across partners for reasons outlined below.

Among various open-source GIS programs, QGIS can be the best suitable option which can be used across partners for reasons outlined below. Comparison of Geographic Information Systems (GIS) software As of January 2018, WHO has reached an agreement with ESRI (an international supplier of GIS software) for an unlimited use of ArcGIS Desktop

More information

Data Structures & Database Queries in GIS

Data Structures & Database Queries in GIS Data Structures & Database Queries in GIS Objective In this lab we will show you how to use ArcGIS for analysis of digital elevation models (DEM s), in relationship to Rocky Mountain bighorn sheep (Ovis

More information

Applying GIS to Hydraulic Analysis

Applying GIS to Hydraulic Analysis Texas A&M University Department of Civil Engineering CVEN689 Applications of GIS to Civil Engineering Instructor: Francisco Olivera, Ph.D., P.E. Applying GIS to Hydraulic Analysis Lim, Chae Kwan April

More information

Working with the Geodatabase

Working with the Geodatabase Working with the Geodatabase Agenda What is the geodatabase? Benefits of the geodatabase Inside the geodatabase Geodatabase rules Demos Additional resources and training Q & A The Geodatabase is the foundation

More information

GEOREFERENCING, PROJECTIONS Part I. PRESENTING DATA Part II

GEOREFERENCING, PROJECTIONS Part I. PRESENTING DATA Part II Week 7 GEOREFERENCING, PROJECTIONS Part I PRESENTING DATA Part II topics of the week Georeferencing Coordinate systems Map Projections ArcMap and Projections Geo-referencing Geo-referencing is the process

More information

9 ArcGIS. Getting Started With ArcGIS

9 ArcGIS. Getting Started With ArcGIS 9 ArcGIS Getting Started With ArcGIS Copyright 1999 2005 ESRI All rights reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI.

More information

COURSE SCHEDULE, GRADING, and READINGS

COURSE SCHEDULE, GRADING, and READINGS COURSE SCHEDULE, GRADING, and READINGS Note: All academic classes will be held in the GIS lab at Royal Thimphu College. These dates are listed here. Other days will involve travel or days off, and the

More information

Delineation of Watersheds

Delineation of Watersheds Delineation of Watersheds Adirondack Park, New York by Introduction Problem Watershed boundaries are increasingly being used in land and water management, separating the direction of water flow such that

More information

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 GIS FOR PLANNING Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 Schedule Class/Lab - SARUP 158 Thursdays 5:30pm - 8:10pm Office Hours - By Appointment Project Ideas - Week 4 Final - 5/10/2018 Instructor

More information

Outline Anatomy of ArcGIS Metadata Data Types Vector Raster Conversion Adding Data Navigation Symbolization Methods Layer Files Editing Help Files

Outline Anatomy of ArcGIS Metadata Data Types Vector Raster Conversion Adding Data Navigation Symbolization Methods Layer Files Editing Help Files UPlan Training Lab Exercise: Introduction to ArcGIS Outline Anatomy of ArcGIS Metadata Data Types Vector Raster Conversion Adding Data Navigation Symbolization Methods Layer Files Editing Help Files Anatomy

More information

Performing Advanced Cartography with Esri Production Mapping

Performing Advanced Cartography with Esri Production Mapping Esri International User Conference San Diego, California Technical Workshops July 25, 2012 Performing Advanced Cartography with Esri Production Mapping Tania Pal & Madhura Phaterpekar Agenda Outline generic

More information

ArcGIS 9 ArcGIS StreetMap Tutorial

ArcGIS 9 ArcGIS StreetMap Tutorial ArcGIS 9 ArcGIS StreetMap Tutorial Copyright 2001 2008 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

Spatial Data Analysis with ArcGIS Desktop: From Basic to Advance

Spatial Data Analysis with ArcGIS Desktop: From Basic to Advance Spatial Data Analysis with ArcGIS Desktop: From Basic to Advance 1. Course overview Modern environmental, energy as well as resource modeling and planning require huge amount of geographically located

More information

ADVANCE GIS ANALYSIS ON ZONAL URBAN PLAN PROJECT

ADVANCE GIS ANALYSIS ON ZONAL URBAN PLAN PROJECT Journal of Young Scientist, Volume II, 2014 ISSN 2344-1283; ISSN CD-ROM 2344-1291; ISSN Online 2344-1305; ISSN-L 2344 1283 ADVANCE GIS ANALYSIS ON ZONAL URBAN PLAN PROJECT Andrei-Șerban TOMPEA 1 Scientific

More information

Title of Paper: Computational grid generation modeling transport of pathogens in Lake Michigan

Title of Paper: Computational grid generation modeling transport of pathogens in Lake Michigan Title of Paper: Computational grid generation modeling transport of pathogens in Lake Michigan Authors Names: Peter N. Shedivy, Hector Bravo PhD Abstract: An estimated 1.2 million people, mostly young

More information

Geospatial Intelligence

Geospatial Intelligence Geospatial Intelligence Geospatial analysis has existed as long as humans have made and studied maps but its importance to the intelligence community has skyrocketed in the past several years, with Unmanned

More information

IMPERIAL COUNTY PLANNING AND DEVELOPMENT

IMPERIAL COUNTY PLANNING AND DEVELOPMENT IMPERIAL COUNTY PLANNING AND DEVELOPMENT GEODATABASE USER MANUAL FOR COUNTY BUSINESS DEVELOPMENT GIS June 2010 Prepared for: Prepared by: County of Imperial Planning and Development 801 Main Street El

More information

Geographic Information System using ArcGIS 10 and Open Source MapWindow Methodology and Comparative Study

Geographic Information System using ArcGIS 10 and Open Source MapWindow Methodology and Comparative Study Geographic Information System using ArcGIS 10 and Open Source MapWindow Methodology and Comparative Study Omar Al-Bayari, Balqies Sadoun, Jalal Al-Azizi and Samih Al Rawashdeh Department of Surveying and

More information

Introduction to Coastal GIS

Introduction to Coastal GIS Introduction to Coastal GIS Event was held on Tues, 1/8/13 - Thurs, 1/10/13 Time: 9:00 am to 5:00 pm Location: Roger Williams University, Bristol, RI Audience: The intended audiences for this course are

More information

caused displacement of ocean water resulting in a massive tsunami. II. Purpose

caused displacement of ocean water resulting in a massive tsunami. II. Purpose I. Introduction The Great Sumatra Earthquake event took place on December 26, 2004, and was one of the most notable and devastating natural disasters of the decade. The event consisted of a major initial

More information

ISSUES AND APPROACHES TO COUPLING GIS TO AN IRRIGATION DISTRIBUTION NETWORK AND SEEPAGE LOSS MODELS ABSTRACT

ISSUES AND APPROACHES TO COUPLING GIS TO AN IRRIGATION DISTRIBUTION NETWORK AND SEEPAGE LOSS MODELS ABSTRACT ISSUES AND APPROACHES TO COUPLING GIS TO AN IRRIGATION DISTRIBUTION NETWORK AND SEEPAGE LOSS MODELS Yanbo Huang 1, Milton Henry 2, David Flahive 3, Guy Fipps 4 ABSTRACT Geographic Information Systems (GIS)

More information

Data Creation and Editing

Data Creation and Editing 11.520:A Workshop on Geographical Information Systems 1.188: Urban Planning and Social Science Laboratory Data Creation and Editing Based in part on notes by Prof. Joseph Ferreira and Michael Flaxman Lulu

More information

Geographical Information Systems

Geographical Information Systems Geographical Information Systems Geographical Information Systems (GIS) is a relatively new technology that is now prominent in the ecological sciences. This tool allows users to map geographic features

More information

Canadian Board of Examiners for Professional Surveyors Core Syllabus Item C 5: GEOSPATIAL INFORMATION SYSTEMS

Canadian Board of Examiners for Professional Surveyors Core Syllabus Item C 5: GEOSPATIAL INFORMATION SYSTEMS Study Guide: Canadian Board of Examiners for Professional Surveyors Core Syllabus Item C 5: GEOSPATIAL INFORMATION SYSTEMS This guide presents some study questions with specific referral to the essential

More information

Week 7 Last week: This week s topics. GIS and Forest Engineering Applications. FE 257. GIS and Forest Engineering Applications.

Week 7 Last week: This week s topics. GIS and Forest Engineering Applications. FE 257. GIS and Forest Engineering Applications. FE 257. GIS and Forest Engineering Applications Week 7 Week 7 Last week: Spatial Projections Questions? Next week- read: Chapter 10: Updating GIS Databases Chapter 12: Synthesis of Techniques Applied to

More information

Teaching GIS for Land Surveying

Teaching GIS for Land Surveying Teaching GIS for Land Surveying Zhanjing (John) Yu Evergreen Valley College, San Jose, California James Crossfield California State University at Fresno, Fresno California 7/13/2006 1 Outline of the Presentation

More information

Introducing ArcGIS Engine

Introducing ArcGIS Engine 1 Introducing ArcGIS Engine ESRI ArcGIS Engine is a platform for building custom standalone geographic information system (GIS) applications that support multiple application programming interfaces (APIs),

More information