NEW SKILLS Begin to learn how to add data in QGIS. Exploration of some of the vector and raster analysis capabilities of QGIS

Size: px
Start display at page:

Download "NEW SKILLS Begin to learn how to add data in QGIS. Exploration of some of the vector and raster analysis capabilities of QGIS"

Transcription

1 Lab 3 VECTOR AND RASTER MODELING Last modified 7 May 2014 NEW SKILLS Begin to learn how to add data in QGIS. Exploration of some of the vector and raster analysis capabilities of QGIS 1. In this exercise we will learn how to add a field to a vector database and insert values. This operation can be performed directly on a shapefile. Add the vector layer allotment.shp from the BrownsPond folder (see Lab 1 Problem 1). Click Cancel when asked for the projection. In Windows, create a new folder called Lab3 in your working folder. In QGIS, right click on the shapefile, choose Save as, and save a copy of the shapefile in this folder call it allotment1. Add this shapefile to the project and remove allotment. Open the attribute table of the allotment1 shapefile. Click the toggle editing mode button on the bottom (button furthest to the left the symbol is a pencil). Now click the new column button (should be the 2 nd button from the right confirm by moving the cursor over the buttons). Fill in OWNER in the Name box, change the Type to Text (string), and set the Width to 25. Click OK to add the new column. You re still in editing mode (until you click the toggle button again), so you can doubleclick on the NULL OWNER values to change them. Fill in the following data: Allotment 1: Wilson; Allotment 2: Peters; Allotment 3: Johnson. Click the Toggle Editing Mode icon again to stop editing and save your file when prompted. Now right click on the allotment1 layer in the Layers window and select Properties. Under the Labels tab, click the Label this layer with check box and select OWNER. Click OK. The labels should be displayed. You can play with the size and font if you wish. 2. In this exercise we will learn how to import point data from a table into a GRASS mapset or a shapefile. We will do this using GRASS tools. Start a new project and create a new mapset Lab3 in the BrownsPondGR location. (NOTE: if you can t access the location then you must navigate to the folder where this location was created). Add the buildingsgr vector layer from the BrownsPondData mapset. The buildingsgr layer does not include any stores. We will create a text file with store locations and import this into GRASS as a new map (we could add the stores to the buildings layer using the Editor as in Problem 1). The text file will look like this: X,Y,CODE,CATEGORY 2530,3550,7,Store 1075,5175,7,Store 750,5650,7,Store There are two ways to create this file. The first is to just use a text editor such as Notepad. However, if you have a large file, typically in the form of an Excel spreadsheet, you can save this file as a csv (comma separated variable) file. If you wish, create a file in Excel (or any other spreadsheet application) whose columns have the data shown, and save it as a csv file. Whether you use a text editor or Excel, save the file as Stores.csv in the Lab3 filder.

2 Now open GRASS Tools. This time we will use the Modules Tree. Select File Management ->Import into GRASS-> Import vector into GRASS -> Import vector into GRASS -> v.in.ascii Import text file. In the window that opens, for the Text file, click on the tree dots, navigate to the Lab3 folder, and select Stores.csv. Click Open. Type StoresGR as the Name for the output vector map. Leave the Input file format as Simple x,y[,z] list. In the Separator window, delete the and enter a, (a comma). In the Number of rows to be skipped, delete the 0 and enter 1 (we will skip the header row). Leave the other selections as they are and click on Run. Then click View output. You should see the three stores. If you open the Stores attribute table, you will see that GRASS has changed the headers. Now we will export the Stores layer to a shapefile. Open GRASS Tools. Again we will use the Modules Tree. Select File Management ->Export from GRASS-> Export vector from GRASS -> v.out.ogr. For the Name of input vector map, select StoresGR. For the OGR format, select ESRI_Shapefile. For the Name, navigate to the Lab3 folder and type Stores.shp. Click on the three dots to make sure it is going into the correct folder. Leave the box checked, and click Run. The next obvious step would be to join the Stores layers to the Buildings layers. We will take that up in a subsequent lab. Map Analysis using Raster and Vector Layers The village of Brown s Pond wants to create a map of suitable sites for a new fire tower. There is an existing fire tower at the fire station. The list of criteria for suitable sites is: 1. At least 4 kilometers from the Fire Department. 2. At an elevation of at least 300 m. 3. On open ground. GRASS First we will carry out this operation in GRASS. Start a new project (you don t need to save the old one). 3. We start by creating a new vector layer showing everywhere within 4000 meters of the fire department. To do this we will create via a very simple digitizing process a new vector layer containing only the fire department (there is another way to do it that we will see in Problem 5). Click Plugins -> GRASS Tools -> Open mapset and open the mapset Lab3 in the BrownsPondGRASS location. Add the buildingsgr vector layer from the BrownsPondGR location, open the attribute table, click the Select by Expression button, and select Category = Fire Dept (see Lab 1 Problem 9 for review). Now we can see the location of the fire department. Close the attribute table Click on Plugins -> GRASS -> Create New GRASS Vector, or click on the Create New Vector Layer icon. Name the vector layer firedeptgr. In the GRASS Edit window, for Mode select Manual entry and click the New Point icon (the three points), position the cursor over the fire department, and click to create the new point. Close the two windows that are open (GRASS Attributes and GRASS Edit).

3 We now have our fire department layer. Click Cancel when asked (possibly more than once) about coordinates. You can uncheck buildingsgr in the Layers window to confirm that it is there. You may also get a topo_node and a topt_point, but for purposes of this lab we can ignore these. Now we will create a 4000m buffer around the fire department. Under Project -> Project properties (General tab), make sure your layer units are in meters. Click on plugins -> GRASS -> Open GRASS tools and type v.buffer in the Modules list filter. Click on it. Select the firedeptgr layer, enter 4000 for the buffer distance in map units and fire4000gr for the name of the new layer. Click Run. Add the new layer to your project (as usual, you can do this directly by clicking View output). 4. Next we will create a vector layer identifying locations above 300 meters in elevation. We do this by first using the map calculator to create a raster layer of elevations over 300m and then converting this to a vector layer. Add the GRASS raster layer elevgr from the BrownsPondGRData mapset. Open the GRASS tool r.mapcalculator and, using the same procedure as you did in Lab 1 Problem 10 (entering elevgr as A and typing A >= 300 as the formula) to find the locations in Field 5 with yield greater than 7500, create a raster file elev300gr consisting of locations with elevgr >= 300. Add the layer. (NOTE: in my application of this step in Version 2.2, I got repeated notifications of warning messages. After clicking on the Close box of these messages repeatedly, the operation worked as expected). Add the raster layer elev300gr from the Lab3 mapset. Use the conversion tool r.to.vect.area (find it either using the filter or looking in the Modules Tree under File management -> Map type conversion -> Covert a raster to vector within GRASS) to convert the raster elev300gr to a vector layer named elev300vecgr. Click View output to add the vector layer. Use the Identify features tool to determine whether value = 0 or value = 1 corresponds to the locations over 300 m. To identify the feature values in a given layer, click on that layer in the Layers window first. 5. Next we will create a vector layer of open land. Instead of digitizing as we did in Exercise 3 we will use the function v.extract, which selects a feature. Add the GRASS vector layer vegevectorgr from the mapset BrownsPondGRData. Open the GRASS tool v.extract.where. You can do this using the filter, but at this point it is also instructive to see if you can do it by exploring the Modules Tree. Choose vegevectorgr as the Input vector map and type TYPE = Open in the WHERE box (NOTE: this is case sensitive, and you need to include the quotation marks). Type vegeopengr as the Name of the output vector map. Click Run. Click View output. If you have done this correctly, you will see a new layer with open land. You can use the Identify Features tool to check your work. 6. Now we have 3 vector layers ready: fire4000gr, elev300gr and vegeopengr. We will use two operations of Vector overlay to create the desired map. Look over the three criteria again. First we will get rid of everything less than 4000 m from the fire station from the layer showing areas above 300 m. Choose the GRASS tool v.overlay.not Vector subtraction (note that if the Modules Tree tab is no longer visible you can click the left arrow button in the upper right corner). For the first vector layer choose elev300vec and for the second choose fire4000. Name the layer el300fire4000gr and click Run.

4 Add the vector layer el300fire4000gr. Notice that you have subtracted the area of the layer f4000. Open the attribute table and use the Identify tool to determine the value of the sites over 300m. If your map is getting too complicated, uncheck some of the layers to view it more easily. Now we will overlay the open land layer. Choose the GRASS tool v.overlay.and Vector intersection. For the first layer choose el300fire4000gr, and for the second choose vegeopengr. Name the layer elevfirevegegr. Click Run. Add the elevfirevegegr layergr. Use the Identify features tool to determine how to identify the locations that correspond to elev >= 300 (Hint= check the a_cat and the b_cat and figure out what they signify). Run the GRASS tool v.extract.where Select features by attributes on the layer elevfirevege and use this selection (Answer at the end of the lab). Name the output map towersitesgr. Add the towersites layer. If you have done this correctly it should look like the map shown here. IMPORTANT You have seen how the GRASS vector modules can be used to perform vector operations. However, when going through these instructions for the first time, it is almost impossible to avoid focusing so much on each individual step that you miss the big picture. Go back through each problem, look at the operation you did and the results of that operation, and see for yourself how you used the GIS to solve the problem you were given. QGIS 7. Now we will do this project in QGIS rather than using the GRASS tools. We start by creating a new shapefile showing everywhere within 4000 meters of the fire department. Start a new project.

5 Add the buildings shapefile from the BrownsPond folder (as always with Brown s Pond data, click Cancel when asked for a projection). Open the attribute table, click on the search, and select Category = FireDept. Prepare to create a 4km buffer around the fire department by making sure your map unit is meters go to Project -> Project Properties, General tab and choose Meters under Camvas units. Confirm that you have the ftools Plugin fetched and active. You can check this via Plugins -> Manage Plugins. If you see this (note the f in ftools), make sure it is checked.. If you don t see this plugin, obtain it using Plugins -> Fetch Python Plugins; if it s there but the box next to it isn t checked, check the box. Go to Vector -> Geoprocessing Tools -> Buffer(s). Keep buildings as the Input vector layer. Make sure the Use only selected features box is checked. Enter 4000 in the buffer distance box. For the Output shapefile, Browse to your Lab3 folder and call the new buffer shapefile fire4000. Leave all other settings as the defaults. Click OK Navegate to your Lab3 folder and add the new shapefile to the project. 8. Next we will create a shapefile of locations above 300 meters in elevation. Add the elev.asc raster from the BrownsPond folder Select Raster -> Raster calculator. Make sure elev@1 is listed in the Raster bands window. Click on the 3 dots next to the output layer, navigate to your Lab3 folder, and enter elev300, and click Save. Double click elec@1 to bring it into the Raster calculator expression window, click on the >= button, and type 300. Click OK. Select Plugins -> Manage plugins and make sure GdalTools is checked. Select Raster -> Conversion -> Polygonalize (raster to vector). Choose your elev300 raster. Click Select next to the Output window, navegate to your Lab3 folder, and save as a shapefile elev300.shp Click OK. Add the shapefile to your project, 9. Next we will create a shapefile of open land Add the vegevector shapefile from the BrownsPond folder. Open the Attribute Table. Use the selection icon to select the field TYPE = Open. Right click on the vegevector shapefile and choose Save selection as. Save the new shapefile as vegeopen in the Lab3 folder. Add it to your project. 10. Now we have 3 shapefiles ready: fire4000, elev300 and vegeopen. We will use two geoprocessing tools to create the desired map. Select Vector -> Geoprocessing Tools -> Difference. Select Input vector layer = elev300, Difference layer = fire4000, browse to the Lab3 folder and save the output shapefile as el300fire4000.shp. Save the output file as distelev in your Lab3 folder. Click Add result to canvas. Confirm that this includes all land further than 4000 m from the fire department, classified as above 300m or below 300m. Select Vector -> Geoprocessing Tools -> Intersect. Input vector layer = distelev, Intersect layer = vegeopen, Output shapefile = distelvege in the Lab3 folder. Again use the identification tool to determine the appropriate attribute value for the tower sites, open the attribute table, select this value, right click on the file, and use Save selection as to save a shapefile towersites.shp in the Lab3 folder. If you have done this correctly it should look like the map shown above. Again, you should now review your work, thinking about what the various geoprocessing tools have accomplished for you. Answers

6 Problem 6. The SQL command is a_a_value = 1 Explanation: The layer elfirevegegr contains polygons that are greater than 4000m from the fire station and on open land, but it contains areas below 300m as well as above 300m The SQL command selects these values above 300m (why?). Another way to do this analysis would be to use v.extract.where at the end of Problem 5 to extract polygons above 300 m.

GY301 Geomorphology Lab 5 Topographic Map: Final GIS Map Construction

GY301 Geomorphology Lab 5 Topographic Map: Final GIS Map Construction GY301 Geomorphology Lab 5 Topographic Map: Final GIS Map Construction Introduction This document describes how to take the data collected with the total station for the campus topographic map project and

More information

Low Cost and Free Public Health Mapping Tools

Low Cost and Free Public Health Mapping Tools Low Cost and Free Public Health Mapping Tools Quantum GIS - QGIS 1) Download and Install a) QGIS can be quickly and easily installed on Windows, Macs and Linux from installers found here: http://hub.qgis.org/projects/quantum-gis/wiki/download

More information

QUANTUM GIS GUIDE FOR WASH FACILITY DATA COLLECTORS AND -MANAGERS

QUANTUM GIS GUIDE FOR WASH FACILITY DATA COLLECTORS AND -MANAGERS COWASH Training Quantum GIS 1 QUANTUM GIS GUIDE FOR WASH FACILITY DATA COLLECTORS AND -MANAGERS Quantum GIS (QGIS) is widely used open source GIS software which usage is very similar to GIS-software market

More information

Identifying Updated Metadata and Images from a Content Provider

Identifying Updated Metadata and Images from a Content Provider University of Iowa Libraries Staff Publications 4-8-2010 Identifying Updated Metadata and Images from a Content Provider Wendy Robertson University of Iowa 2010 Wendy C Robertson Comments Includes presenter's

More information

GGR 375 QGIS Tutorial

GGR 375 QGIS Tutorial GGR 375 QGIS Tutorial With text taken from: Sherman, Gary E. Shuffling Quantum GIS into the Open Source GIS Stack. Free and Open Source Software for Geospatial (FOSS4G) Conference. 2007. Available online

More information

Select the Parks within Forest Acres

Select the Parks within Forest Acres Select the Parks within Forest Acres TASKS RESULT 1. Add the county boundary, municipalities and parks (pts.) layers to your map 2. Save your map (.mxd) to your desktop Your map should look something like

More information

Field Validation. Background: Initial concept: 1 st step:

Field Validation. Background: Initial concept: 1 st step: Field Validation Background: When creating complex GIS databases, it is essential that all or a significant portion of the digitized (or acquired) data should to be validated; this is done with various

More information

GIS Basics for Urban Studies

GIS Basics for Urban Studies GIS Basics for Urban Studies Date: March 21, 2018 Contacts: Mehdi Aminipouri, Graduate Peer GIS Faciliator, SFU Library (maminipo@sfu.ca) Keshav Mukunda, GIS & Map Librarian Librarian for Geography (kmukunda@sfu.ca)

More information

Question: How do I move my mobile account from the Corporate to my Personal Account?

Question: How do I move my mobile account from the Corporate to my Personal Account? Question: How do I move my mobile account from the Corporate to my Personal Account? Answer: A user leaving Nortel can move his/her account off of the corporate program and into a personal liable account.

More information

HOW TO USE THE EXPORT FEATURE IN LCL

HOW TO USE THE EXPORT FEATURE IN LCL HOW TO USE THE EXPORT FEATURE IN LCL In LCL go to the Go To menu and select Export. Select the items that you would like to have exported to the file. To select them you will click the item in the left

More information

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center In this workshop, we will cover the basics of working with spatial data, as well as its main uses for archaeology.

More information

Lesson 14: Property Editor

Lesson 14: Property Editor Lesson 14: Property Editor Lesson Objectives After completing this lesson, you will be able to: Work with Property Filters in the Property Editor Add part and net properties using the Property Editor Using

More information

Field Validation Exercise

Field Validation Exercise Field Validation Exercise Background: When creating complex GIS databases, it is essential that all or a significant portion of the digitized (or acquired) data should to be validated; this is done with

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

QGIS LAB SERIES GST 102: Spatial Analysis Lab 3: Advanced Attributes and Spatial Queries for Data Exploration

QGIS LAB SERIES GST 102: Spatial Analysis Lab 3: Advanced Attributes and Spatial Queries for Data Exploration QGIS LAB SERIES GST 102: Spatial Analysis Lab 3: Advanced Attributes and Spatial Queries for Data Exploration Objective Understanding Attribute Queries and Spatial Queries Document Version: 2014-06-19

More information

A Practical Guide to Using QGIS

A Practical Guide to Using QGIS A Practical Guide to Using QGIS 1.1 INTRODUCTION Quantum GIS (QGIS) is a useful mapping software that enables the compilation and displaying of spatial data in the form of a map. Gaining experience in

More information

BANNER 9 QUICK NAVIGATION GUIDE

BANNER 9 QUICK NAVIGATION GUIDE Application Navigator Application Navigator provides a single interface to navigate the Banner 9 JAVA pages. It is a tool that allows you to go back and forth between the current Banner forms and the new

More information

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4 Data Assembly, Part II GIS Cyberinfrastructure Module Day 4 Objectives Continuation of effective troubleshooting Create shapefiles for analysis with buffers, union, and dissolve functions Calculate polygon

More information

Calendar Guide: Exchange (Outlook) -> Google. How to manually transfer your Exchange (Outlook) calendar over to Google Calendar

Calendar Guide: Exchange (Outlook) -> Google. How to manually transfer your Exchange (Outlook) calendar over to Google Calendar Calendar Guide: Exchange (Outlook) -> Google How to manually transfer your Exchange (Outlook) calendar over to Google Calendar Do I need to do this? If you don t care much for your old calendar events

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

Business Process Procedures

Business Process Procedures Business Process Procedures 14.40 MICROSOFT EXCEL TIPS Overview These procedures document some helpful hints and tricks while using Microsoft Excel. Key Points This document will explore the following:

More information

Tutorial for Lane County Mapping Applications

Tutorial for Lane County Mapping Applications Tutorial for Lane County Mapping Applications Contents Overview... 2 Tools... 2 Navigation Tools... 3 Display Tools... 5 Information Tools... 6 Sharing Tools... 7 Common Tasks... 9 Identify or Show Data

More information

QGIS Tutorials Documentation

QGIS Tutorials Documentation QGIS Tutorials Documentation Release 0.1 Nathaniel Roth November 30, 2016 Contents 1 Installation 3 1.1 Basic Installation............................................. 3 1.2 Advanced Installation..........................................

More information

Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2

Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2 Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2 Practical 2 Learning objectives: To work with a vector base map within a GIS and overlay point data. To practise using Ordnance Survey mapping

More information

Using a Geographic Information System (GIS) to look at marine fisheries data

Using a Geographic Information System (GIS) to look at marine fisheries data Using a Geographic Information System (GIS) to look at marine fisheries data Daniel Sheehan GIS Programmer & Analyst Office of Educational Innovation & Technology dsheehan@mit.edu x2-1475 Introduction

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

Importing and Exporting Data

Importing and Exporting Data 14 Importing and Exporting Data SKILL SUMMARY Skills Exam Objective Objective Number Importing Data Import data into tables. Append records from external data. Import tables from other databases. Create

More information

Advanced GIS Using GRASS to create SVF and LRM

Advanced GIS Using GRASS to create SVF and LRM Advanced GIS Using GRASS to create SVF and LRM Table of Contents Aims...2 Outcomes...2 How to use this booklet...2 Task 1 Creating a GRASS location from QGIS...3 Task 2 Changing the GRASS Region...8 Task

More information

Exercise 4.1. Create New Variables in a Shapefile. GIS Techniques for Monitoring and Evaluation of HIV/AIDS and Related Programs

Exercise 4.1. Create New Variables in a Shapefile. GIS Techniques for Monitoring and Evaluation of HIV/AIDS and Related Programs GIS Techniques for Monitoring and Evaluation of HIV/AIDS and Related Programs Exercise 4.1 Create New Variables in a Shapefile *This training was developed as part of a joint effort between MEASURE Evaluation

More information

Explore some of the new functionality in ArcMap 10

Explore some of the new functionality in ArcMap 10 Explore some of the new functionality in ArcMap 10 Scenario In this exercise, imagine you are a GIS analyst working for Old Dominion University. Construction will begin shortly on renovation of the new

More information

Working with Images 1 / 12

Working with Images 1 / 12 V2 APRIL 2017 1 / 12 To brighten up your website it is often nice to have images inserted onto various pages of your website. We have an easy option to size these photos on your page, as well as aligning

More information

My Query Builder Function

My Query Builder Function My Query Builder Function The My Query Builder function is used to build custom SQL queries for reporting information out of the TEAMS system. Query results can be exported to a comma-separated value file,

More information

CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION

CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION Georeferencing is the process of assigning real-world coordinates to each pixel of the raster. These coordinates are obtained by doing field surveys - collecting

More information

PBWORKS - Student User Guide

PBWORKS - Student User Guide PBWORKS - Student User Guide Fall 2009 PBworks - Student Users Guide This guide provides the basic information you need to get started with PBworks. If you don t find the help you need in this guide, please

More information

BANNER 9 NAVIGATION TIPS 03/26/2018. Next Block. Bottom right of page. Upper right of page. Bottom right of filter page or. Bottom right of pop-up box

BANNER 9 NAVIGATION TIPS 03/26/2018. Next Block. Bottom right of page. Upper right of page. Bottom right of filter page or. Bottom right of pop-up box Documentation Prepared By: Leanna Bowman leanna.bowman@wwu.edu 360-650-3996 March 23, 2018 New Terminology Old Terminology New Terminology Forms Blocks Next Block Rollback Query Pages Sections Go Start

More information

Downloading Census Data from American Factfinder for use in ArcGIS

Downloading Census Data from American Factfinder for use in ArcGIS Downloading Census Data from American Factfinder for use in ArcGIS Written by Barbara Parmenter, revised September 24 2013 OBTAINING DATA FROM AMERICAN FACTFINDER (AFF)... 1 PREPARING AMERICAN FACTFINDER

More information

Office of Geographic Information Systems

Office of Geographic Information Systems Office of Geographic Information Systems Print this Page Fall 2012 - Working With Layers in the New DCGIS By Kent Tupper The new version of DCGIS has access to all the same GIS information that our old

More information

Download the Latest LTR QGIS version (2.18) from the QGIS website: download.qgis.org/ >> Settings > Options > Locale

Download the Latest LTR QGIS version (2.18) from the QGIS website: download.qgis.org/ >> Settings > Options > Locale Exercise 1: Introduction to QGIS Aim: To understand the basis of GIS To learn the basics of a GIS software (QGIS) INTRODUCTION Software Access Download the Latest LTR QGIS version (2.18) from the QGIS

More information

Downloading Census Data from American Factfinder2 for use in ArcGIS

Downloading Census Data from American Factfinder2 for use in ArcGIS Downloading Census Data from American Factfinder2 for use in ArcGIS Written by Barbara Parmenter, revised November 18, 2011 OBTAINING DATA FROM AMERICAN FACTFINDER2... 1 PREPARING AMERICAN FACTFINDER DATA

More information

Quantum GIS Basic Operations (Wien 2.8) Raster Operations

Quantum GIS Basic Operations (Wien 2.8) Raster Operations 1 Quantum GIS Basic Operations (Wien 2.8) Raster Operations The QGIS Manual steps through many more basic operations than the following exercise, and will be occasionally be referenced within these NOTE

More information

Mapping 2001 Census Data Using ArcView 3.3

Mapping 2001 Census Data Using ArcView 3.3 Mapping 2001 Census Data Using ArcView 3.3 These procedures outline: 1. Mapping a theme (making a map) 2. Preparing the layout for printing and exporting the map into various file formats. In order to

More information

Lesson 15: Using Text Files to Add or Modify Design Properties

Lesson 15: Using Text Files to Add or Modify Design Properties Lesson 15: Using Text Files to Add or Modify Design Properties Lesson Objectives After completing this lesson, you will be able to: Use the Export/Import commands Create a Custom Bill-of-Materials Using

More information

BANNER 9 QUICK NAVIGATION GUIDE

BANNER 9 QUICK NAVIGATION GUIDE MARCH 2017 Application Navigator Application Navigator provides a single interface to seamlessly navigate between Banner 9 JAVA pages and Banner 8 Oracle forms. It is a tool that allows you to go back

More information

INTRODUCTION TO GIS WORKSHOP EXERCISE

INTRODUCTION TO GIS WORKSHOP EXERCISE 111 Mulford Hall, College of Natural Resources, UC Berkeley (510) 643-4539 INTRODUCTION TO GIS WORKSHOP EXERCISE This exercise is a survey of some GIS and spatial analysis tools for ecological and natural

More information

Intro to GIS (requirements: basic Windows computer skills and a flash drive)

Intro to GIS (requirements: basic Windows computer skills and a flash drive) Introduction to GIS Intro to GIS (requirements: basic Windows computer skills and a flash drive) Part 1. What is GIS. 1. System: hardware (computers, devices), software (proprietary or free), people. 2.

More information

Using All Topo Maps to Bring in a Background Quad Map in Pathfinder Office or ArcView

Using All Topo Maps to Bring in a Background Quad Map in Pathfinder Office or ArcView Using All Topo Maps to Bring in a Background Quad Map in Pathfinder Office or ArcView Pathfinder Office, ArcView, and ArcExplorer can all display background image files, such as Digital Raster Graphics

More information

All data is in Universal Transverse Mercator (UTM) Zone 6 projection, and WGS 84 datum.

All data is in Universal Transverse Mercator (UTM) Zone 6 projection, and WGS 84 datum. 111 Mulford Hall, College of Natural Resources, UC Berkeley (510) 643-4539 EXPLORING MOOREA DATA WITH QUANTUM GIS In this exercise, you will be using an open-source FREE GIS software, called Quantum GIS,

More information

Exercise 4: Import Tabular GPS Data and Digitizing

Exercise 4: Import Tabular GPS Data and Digitizing Exercise 4: Import Tabular GPS Data and Digitizing You can create NEW GIS data layers by digitizing on screen with an aerial photograph or other image as a back-drop. You can also digitize using imported

More information

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2 IBM Cognos Analytics Welcome to Introduction to Cognos! Today s objectives include: Gain a Basic Understanding of Cognos View a Report Modify a Report View a Dashboard Request Access to Cognos Table of

More information

-In windows explorer navigate to your Exercise_4 folder and right-click the DEC_10_SF1_P1.csv file and choose Open With > Notepad.

-In windows explorer navigate to your Exercise_4 folder and right-click the DEC_10_SF1_P1.csv file and choose Open With > Notepad. BIOL 4460/5460 and GEOL 4460 Introduction to GIS LAB 4 MAKING A THEMATIC MAP This exercise is to show you how to create a map for printing. As you have seen in the lecture, maps can have different purposes

More information

Admissions & Intro to Report Editing Participants Guide

Admissions & Intro to Report Editing Participants Guide IBM Cognos Analytics Admissions & Intro to Report Editing Participants Guide Welcome to Cognos - Admissions and Introduction to Report Editing! Today s objectives include: Gain a Basic Understanding of

More information

Exercise 03 Creating and Editing Shapefiles Assigned Feb. 2, 2018 Due Feb. 9, 2018

Exercise 03 Creating and Editing Shapefiles Assigned Feb. 2, 2018 Due Feb. 9, 2018 Exercise 03 Creating and Editing Shapefiles Assigned Feb. 2, 2018 Due Feb. 9, 2018 On the class website I've posted an exercise_03_data.zip file which contains a USGS 7.5' quad map of Laramie (as laramie_quad_usgs_1963.tiff)

More information

Group Administrator. ebills csv file formatting by class level. User Guide

Group Administrator. ebills csv file formatting by class level. User Guide Group Administrator ebills csv file formatting by class level User Guide Version 1.0 February 10, 2015 Table of Content Excel automated template... 3 Enable Macro setting in Microsoft Excel... 3 Extracting

More information

RITIS Training Module 4 Script

RITIS Training Module 4 Script RITIS Training Module 4 Script Welcome to the Regional Integrated Information System or RITIS Module 04 CBT. To begin, select the start button or press Shift+N on your keyboard. This training module will

More information

Login: Quick Guide for Qualtrics May 2018 Training:

Login:   Quick Guide for Qualtrics May 2018 Training: Qualtrics Basics Creating a New Qualtrics Account Note: Anyone with a Purdue career account can create a Qualtrics account. 1. In a Web browser, navigate to purdue.qualtrics.com. 2. Enter your Purdue Career

More information

Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use

Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use ArcCatalog to find maps and data and how to display maps in

More information

Mapping Tabular Data Display XY points from csv

Mapping Tabular Data Display XY points from csv Mapping Tabular Data Display XY points from csv Materials needed: AussiePublicToilets.csv. [1] Open and examine the data: Open ArcMap and use the Add Data button to add the table AussiePublicToilets.csv

More information

Importing Local Contacts from Thunderbird

Importing Local Contacts from Thunderbird 1 Importing Local Contacts from Thunderbird Step 1, Export Contacts from Thunderbird In Thunderbird, select Address Book. In the Address Book, click on Personal Address Book and then select Export from

More information

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop Summary: In many cases, online geocoding services are all you will need to convert addresses and other location data into geographic data.

More information

Second Summer School on Digital Tools for Humanists. Instructions for the hands-on tutorial on GIS

Second Summer School on Digital Tools for Humanists. Instructions for the hands-on tutorial on GIS Second Summer School on Digital Tools for Humanists Instructions for the hands-on tutorial on GIS Augusto Ciuffoletti Dipartimento di Informatica - Università di Pisa Pisa - June 2018 Abstract This document

More information

Introduction to Microsoft Access 2016

Introduction to Microsoft Access 2016 Introduction to Microsoft Access 2016 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Importing Career Standards Benchmark Scores

Importing Career Standards Benchmark Scores Importing Career Standards Benchmark Scores The Career Standards Benchmark assessments that are reported on the PIMS Student Fact Template for Career Standards Benchmarks can be imported en masse using

More information

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist.

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist. Chapter 5 Exporting Data from Access and MySQL Skills you will learn: How to export data in text format from Microsoft Access, and from MySQL using Navicat and Sequel Pro. If you are unsure of the basics

More information

THE HONG KONG POLYTECHNIC UNIVERSITY DEPARTMENT OF LAND SURVEYING & GEO-INFORMATICS LSGI521 PRINCIPLES OF GIS

THE HONG KONG POLYTECHNIC UNIVERSITY DEPARTMENT OF LAND SURVEYING & GEO-INFORMATICS LSGI521 PRINCIPLES OF GIS THE HONG KONG POLYTECHNIC UNIVERSITY DEPARTMENT OF LAND SURVEYING & GEO-INFORMATICS LSGI521 PRINCIPLES OF GIS Student name: Student ID: Table of Content Working with files, folders, various software and

More information

Importing GPS points and Hyperlinking images.

Importing GPS points and Hyperlinking images. Geol 3050 GIS for Geologists Exercise 15 Exercise 15 Making a Virtual Fieldtrip: Importing GPS points and Hyperlinking images. Due: Thursday, March 22. Goal: A) Get familiar with importing GPS points and

More information

Administrator Quick Guide

Administrator Quick Guide 1 Administrator Quick Guide Login Screen The first page employees will see when visiting their training site is the login screen. This is where employees must enter their username and password to access

More information

Community Health Maps Lab Series

Community Health Maps Lab Series Community Health Maps Lab Series Lab 6 Data Visualization with Carto Objective Understand how to upload and style data with Carto to create an online visualization of your data Document Version: 2017-08-28(Final)

More information

Appendix 2: Random Plots Workbook: Unstratified Sample

Appendix 2: Random Plots Workbook: Unstratified Sample Appendix 2: Random Plots Workbook: Unstratified Sample These instructions will help users of all skill levels create a random sample of i-tree Eco plot centers, plot areas, and the associated i-tree Eco-required

More information

.txt - Exporting and Importing. Table of Contents

.txt - Exporting and Importing. Table of Contents .txt - Exporting and Importing Table of Contents Export... 2 Using Add Skip... 3 Delimiter... 3 Other Options... 4 Saving Templates of Options Chosen... 4 Editing Information in the lower Grid... 5 Import...

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

Exercise 5: Import Tabular GPS Data and Digitizing

Exercise 5: Import Tabular GPS Data and Digitizing Exercise 5: Import Tabular GPS Data and Digitizing You can create NEW GIS data layers by digitizing on screen with an aerial photograph or other image as a back-drop. You can also digitize using imported

More information

Banner Navigation Contents Updated August 2018

Banner Navigation Contents  Updated August 2018 Banner Navigation Contents Banner 9 Application Navigator... 2 What is a Banner Page?... 4 Basic Navigation... 4 Accessing Forms... 9 How to Filter... 10 Personalizing My Banner Menu... 11 Keystrokes in

More information

Chapter 7. Joining Maps to Other Datasets in QGIS

Chapter 7. Joining Maps to Other Datasets in QGIS Chapter 7 Joining Maps to Other Datasets in QGIS Skills you will learn: How to join a map layer to a non-map layer in preparation for analysis, based on a common joining field shared by the two tables.

More information

Work with the Staff Directory App

Work with the Staff Directory App Work with the Staff Directory App Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress

More information

Basic Query for Human Resources

Basic Query for Human Resources Basic Query for Human Resources Open browser Log into PeopleSoft Human Resources: Go to: https://cubshr9.clemson.edu/psp/hpprd/?cmd=login Enter your Novell ID and Password Click Sign In Navigation into

More information

Segmentation Guide using open source resources By Paul Russell, Ana Carolina Fiorini, and Trevor Caughlin

Segmentation Guide using open source resources By Paul Russell, Ana Carolina Fiorini, and Trevor Caughlin Segmentation Guide using open source resources By Paul Russell, Ana Carolina Fiorini, and Trevor Caughlin This guide aims to give you a step by step guidance to digitize tree cover in google earth using

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

MiniBase Workbook. Schoolwires Centricity2

MiniBase Workbook. Schoolwires Centricity2 MiniBase Workbook Schoolwires Centricity2 Table of Contents Introduction... 1 Create a New MiniBase... 2 Add Records to the MiniBase:... 3 Add Records One at a Time... 3 Import Records:... 4 Deploy the

More information

Map Preparation. Using QGIS

Map Preparation. Using QGIS Map Preparation Using QGIS Tutorial ID: IGET_GIS_006 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

More information

Lab - Configure Browser Settings in Windows 8

Lab - Configure Browser Settings in Windows 8 Introduction In this lab, you will configure browser settings in Microsoft Internet Explorer. Recommended Equipment A computer with Windows 8 An Internet connection Step 1: Set Internet Explorer as the

More information

Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams.

Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams. GIS LAB 3 Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams. One of the primary goals of this course is to give you some hands-on

More information

Exercise 1: An Overview of ArcMap and ArcCatalog

Exercise 1: An Overview of ArcMap and ArcCatalog Exercise 1: An Overview of ArcMap and ArcCatalog Introduction: ArcGIS is an integrated collection of GIS software products for building a complete GIS. ArcGIS enables users to deploy GIS functionality

More information

Lab 3: Digitizing in ArcMap

Lab 3: Digitizing in ArcMap Lab 3: Digitizing in ArcMap What You ll Learn: In this Lab you ll be introduced to basic digitizing techniques using ArcMap. You should read Chapter 4 in the GIS Fundamentals textbook before starting this

More information

Power BI Desktop Lab

Power BI Desktop Lab Power BI Desktop Lab Fil Schwartz fschwartz@manersolutions.com (517) 323-7500 POWER BI DESKTOP LAB This is a hands on lab for users that have little or no experience with Power BI. We will go through a

More information

PBWORKS - Student User Guide

PBWORKS - Student User Guide PBWORKS - Student User Guide Spring and Fall 2011 PBworks - Student Users Guide This guide provides the basic information you need to get started with PBworks. If you don t find the help you need in this

More information

You can download missing data from the course website, together with the codes R and python that we will run in this exercise.

You can download missing data from the course website, together with the codes R and python that we will run in this exercise. Exercise 4: Samples Characterization Aim: Sampling environmental conditions Principal Component Analysis of environmental conditions Hierarchical clustering of sampling spots Interpretation of the environmental

More information

Introduction to GIS & Mapping: ArcGIS Desktop

Introduction to GIS & Mapping: ArcGIS Desktop Introduction to GIS & Mapping: ArcGIS Desktop Your task in this exercise is to determine the best place to build a mixed use facility in Hudson County, NJ. In order to revitalize the community and take

More information

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

TRAINING GUIDE. Advanced Crystal 1

TRAINING GUIDE. Advanced Crystal 1 TRAINING GUIDE Advanced Crystal 1 Using Crystal Reports with Lucity Advanced Examples 1 The fifth of a seven-part series, this workbook is designed for Crystal Reports users with some experience, who wish

More information

Using GIS to Site Minimal Excavation Helicopter Landings

Using GIS to Site Minimal Excavation Helicopter Landings Using GIS to Site Minimal Excavation Helicopter Landings The objective of this analysis is to develop a suitability map for aid in locating helicopter landings in mountainous terrain. The tutorial uses

More information

Lab 11: Terrain Analysis

Lab 11: Terrain Analysis Lab 11: Terrain Analysis What You ll Learn: Basic terrain analysis functions, including watershed, viewshed, and profile processing. You should read chapter 11 in the GIS Fundamentals textbook before performing

More information

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE If your buyers use PayPal to pay for their purchases, you can quickly export all names and addresses to a type of spreadsheet known as a

More information

Geology Interpretation Project Big Injun Sand & Trenton-Black River plays, Central Appalachian Basin, WV

Geology Interpretation Project Big Injun Sand & Trenton-Black River plays, Central Appalachian Basin, WV Geology 554 - Interpretation Project Big Injun Sand & Trenton-Black River plays, Central Appalachian Basin, WV Part 1 - Access and Basic Interpretation of the Seismic Data Using Kingdom T. H. Wilson (2005)

More information

IU Kokomo Career and Accessibility Center

IU Kokomo Career and Accessibility Center Creating an Accessible Syllabus in Microsoft Word Incorporating the use of headings and a table of contents (if needed) in your syllabus will make the document increasingly accessible to all students.

More information

Geography 104 Instructors: Judd Curran & Mark Goodman. LAB EXERCISE #3 Data Analysis - Buffering (25pts)

Geography 104 Instructors: Judd Curran & Mark Goodman. LAB EXERCISE #3 Data Analysis - Buffering (25pts) Instructors: Judd Curran & Mark Goodman Name: LAB EXERCISE #3 Data Analysis - Buffering (25pts) Transformations in GIS are methods that transform GIS objects and databases into more useful products using

More information

Exercise 1: Getting to know ArcGIS

Exercise 1: Getting to know ArcGIS The Scenario You are working for the California Visitor s Commission. You have been asked to prepare a map of California for several dignitaries from out of the country. Your map will need to include enough

More information

Lab 12: Sampling and Interpolation

Lab 12: Sampling and Interpolation Lab 12: Sampling and Interpolation What You ll Learn: -Systematic and random sampling -Majority filtering -Stratified sampling -A few basic interpolation methods Data for the exercise are in the L12 subdirectory.

More information

Log into your portal and then select the Banner 9 badge. Application Navigator: How to access Banner forms (now called pages.)

Log into your portal and then select the Banner 9 badge. Application Navigator: How to access Banner forms (now called pages.) Navigation Banner 9 Log into your portal and then select the Banner 9 badge. This will bring you to the Application Navigator. Application Navigator: How to access Banner forms (now called pages.) Menu

More information

GEO 465/565 Lab 6: Modeling Landslide Susceptibility

GEO 465/565 Lab 6: Modeling Landslide Susceptibility 1 GEO 465/565 Lab 6: Modeling Landslide Susceptibility This lab will give you more practice in understanding and building a GIS analysis model. Recall from class lecture that a GIS analysis model is a

More information