GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I)

Size: px
Start display at page:

Download "GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I)"

Transcription

1 DEPARTMENT OF GEOGRAPHY HONG KONG BAPTIST UNIVERSITY Prof. Q. Zhou GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I) Objectives Before we can use GIS for any analysis and decision support, the geographical data in GIS must be properly prepared. In this exercise, students are asked to produce a map which shows the distribution of health services facilities in Hong Kong Island, and further package it to be shared in various ways. After finishing the lab works, students should learn to: Create geographical data subset by extracting and aggregating features in feature class; Create feature class using XY coordinates; Display geographical data in different coordinate system using projection on fly; Share the map in ArcGIS for Desktop as Map Package and Service; Guidelines Preparation 1. Logon to workstation using your GISLAB account. Start ArcMap with a Blank Map. Edit the document properties (select File > Map Document Properties ). Change the Title to be Public Health Services in Hong Kong Island, and the Author to be (your name). 2. Open the Catalog window (by selecting Windows > Catalog) if you have not done so. Expand the Folder Connections, you should find there is one connection which connects to your J Drive (J:). Add another connection to your K Drive (K:) by clicking the Connect to Folder window, and select (K:) from Computer. button in Catalog Expand both J: and K: under Folder Connections and you should be able to find the \geog4017 subfolders in both drives.

2 3. Copy entire K:\geog4017\lab3 folder to J:\geog4017, you can do it in either ways listed below: drag the \lab3 folder in K:\geog4017 and drop it to J:\geog4017, or; right click the K:\geog4017\lab3 and select Copy, then right click the J:\geog4017 and select Paste; The folder contains three shapefile and one text file (the csv file was created using Microsoft Excel): hk_districtcouncils.shp location and information of District Councils districts for whole Hong Kong (same as what you got in lab 1); hk_hospitals_selected.shp location and information of selected hospitals for whole Hong Kong (same as what you got in lab 1); hki_new_hospital.shp location and information of a new hospital located in Hong Kong Island (which is not included in hk_hospitals_selected.shp); hki_clinics_coord.csv names and coordinates (in Universal Transverse Mercator UTM) of clinics in Hong Kong Island which are managed by Hospital Authority; 4. Save your map document (File > Save) as lab3.mxd and place it in J:\geog4017\lab3. Create subset of geographical data 5. Create a copy for hk_districtcouncils.shp, which will be used to store the boundary of Hong Kong Island. In the Catalog window, right click the J:\geog4017\lab3\hk_districtcouncils.shp and select Copy, then right click the J:\geog4017\lab3 and select Paste. A new shapefile hk_districtcouncilcopy.shp will be created. Rename it to hki_extent.shp (right click > Rename). The original hk_districtcouncils.shp is useless here. You may delete it by right clicking it then select Delete. 6. Add all the files in J:\geog4017\lab3 (listed in step 3) into the data frame as layers and table (File > Add Data > Add Data ). You may also add data by dragging files from Catalog window and dropping them in the view. 7. Our study area is limited to Hong Kong Island (that covers Central and Western, Wan Chai, Eastern, and Southern districts). We need to create a feature class which shows the extent of Hong Kong Island only from hki_extent.shp. Activate the Editor toolbar (Customize > Toolbars > Editor), press [Editor] button and select Start Editing to start and editing session. In the Start Editing dialog box, select layer hki_extent and click [OK] to continue.

3 Open the attribute table of hki_extent layer (right click > Open Attribute Table), select the four District Councils which belong to Hong Kong island (Central and Western, Wan Chai, Eastern, Southern) (hold the [Ctrl] key in your keyboard, then click the leftmost cell of each record). Then press [Table Options] button and select Switch Selection. Question: What happened when you select Switch Selection? Delete the selected records by clicking the [Delete Selected] button (or by right clicking the leftmost column and select Delete Selected). Then switch to Editor toolbar, press [Editor] > Stop Editing, select [YES] to save your edit and stop editing. 8. We may need to use different geoprocessing tools to manipulate our geographical data since now. All the geoprocessing tools are placed in the ArcToolbox. The ArcToolbox window is the central place where you find, manage, and execute geoprocessing tools. Tools can also be managed and executed from ArcCatalog. The ArcToolbox window contains toolboxes, which in turn contain tools and toolsets (a toolset is just an organizational device, like a system folder). Tools must be contained in a toolbox they cannot exist outside a toolbox.

4 Launch ArcToolbox (Geoprocessing > ArcToolbox). From the Data Management Tools toolbox, Generalization toolset, open the Dissolve tool (by double clicking it or by right clicking it and select Open ). In the Dissolve dialog box: Set the Input Features to be hki_extent Name the Output Feature Class as hkisland.shp and place it in J:\geog4017\lab3 folder Leave other fields as default and then press [OK] to run the tool. You may get the description of the tool and fields by pressing the [Show Help >>] button. Once the dissolve completes, the shapefile hkisland.shp will be added into the data frame as a layer automatically. Check the extent as well as the attribute table of this layer.

5 Question: What did dissolve perform here? You may close or rearrange toolbar, table or window as you wish. Keep workspace tidy and clean as to increase your efficiency. 9. We will use the newly created hkisland.shp to create a subset for hospital in Hong Kong Island based on location. We will use the Clip tool in this case. Launch ArcToolbox (Geoprocessing > ArcToolbox if you have already closed it). From the Analysis Tools toolbox, Extract toolset, open the Clip tool. You may also launch the Clip tool by selecting Geoprocessing > Clip. In the Clip dialog box: Set the Input Features to be hk_hospitals_select Set the Clip Features to be hkisland Name the Output Feature Class to be hki_hospitals_partial.shp (place it in J:\geog4017\lab3) Leave other fields as default and then press [OK] to run the tool. The shapefile hki_hospitals_partial.shp will be added into data frame as a layer after the Clip is completed. Check the extent as well as the attribute table of this layer. Question: In our this case, can you suggest another way to create a subset of hospitals apart from using any tool in ArcToolbox? (hint: check the attribute table of hk_hospitals_selected layer again.) Aggregate geographical data 10. Unfortunately our original hk_hospitals_selected.shp is not updated. A hospital has been established in Hong Kong Island recently and it is not included in hk_hospitals_selected.shp. Its information is placed in another shapefile hki_new_hospital.shp. We need to create a new feature class, which combines the data of hki_hospitals_partial.shp and

6 hki_new_hospital.shp. We will use the Merge tool to do this. Launch ArcToolbox (Geoprocessing > ArcToolbox if you have already closed it). From the Data Management Tools toolbox, General toolset, open the Merge tool. In the Merge dialog box: Set the Input Datasets to be hki_hospitals_partial and hki_new_hospital Name the Output Dataset to be hki_hospitals_updated.shp (place it in J:\geog4017\lab3) Leave other fields as default and then press [OK] to run the tool. The shapefile hki_hospitals_updated.shp will be added into data frame as a layer after the Merge is completed. Check the extent as well as the attribute table of this layer. Questions: Can you find the new hospital in hki_hospitals_updated? What is its name? You may find a similar tool Append in ArcToolbox (in Data Management Tools toolbox, General toolset). Can you briefly state the difference between Merge and Append? Does Append suitable in our previous operation? (you may try to perform Append to check the result). Create features using XY Table 11. Apart from hospitals, we also want to create a feature class that contains the location and information of clinics in Hong Kong Island. There is no pre made digital map available. Nevertheless we were able to find the list from Hospital Authority, and the coordinates of the clinics may be collected (in UTM Universal Transverse Mercator) may be collected by using Google Earth. Universal Transverse Mercator coordinates can be shown in Google Earth The names and coordinates of the clinics are stored in the hki_clinics_coord.csv file, which you

7 should already added it into the data frame as a table. Have a look on it by right clicking it in the Table of Contents and select Open. Question: In computing, a comma separated values (CSV) file stores tabular data (numbers and text) in plain text. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. CSV is a common data exchange format that is widely supported by consumer, business, and scientific applications. Which field(s) store(s) the coordinates of clinics in this table? Can you guess their meaning? 12. We may use the information in this csv file to create the required feature class. Right click it again and select Display XY Data this time. In the Display XY Data dialog box, set UTM_E as X Field, and UTM_N as Y Field, leave others as default and press [OK]. A warning will be prompted, study carefully and press [OK] to create the layer. 13. A new layer hki_clinics_coord.csv Events is created and it should appears in the Table of Contents. However, you should find that NO clinic is shown in our map. Check the coordinates of our current map extent (at the bottom right corner of the view). Then zoom to the extent of hki_clinics_coord.csv Events by right clicking it and select Zoom To Layer.

8 Question: Can you explain what is happening briefly? You should check the coordinate system of the current data frame by selecting View > Data Frame Properties then check the [Coordinate System] tab. Return to original map extent (right click the hkisland layer and select Zoon To Layer), and remove the newly created hki_clinics_coord.csv Events layer (right click > Remove). We need to recreate this layer again. 14. Repeat step 11 (right click hki_clinics_coord.csv > Display XY Data ). Remember to set the proper X Field and Y Field first. But this time we also need to set the Coordinate System of Input Coordinates. Press the [Edit ] button in Display XY Data dialog box.

9 In the Spatial Reference dialog box, choose WGS1984 UTM Zone 50N from Projected Coordinate Systems > UTM > WGS1984 > Northern Hemisphere. Press [OK] to return. In the Display XY Data dialog box, press [OK]. You will face the same warning as that in step 11, press [OK] to create the layer. 15. This time the clinics should be properly displayed. Question: Record the following clinics coordinates in Hong Kong 1980 Grid from your data frame and put your answers in the below table: (you may locate the clinic by manually selecting it in Attribute Table, or by using the Select by Attributes tool (select Selection > Select by Attributes > (type appropriate SQL Statement)). Coordinates of the feature may be obtained at the bottom right corner of the View.) Tung Wah Hospital GOPC Violet Peel General Out patient Clinic Ap Lei Chau General Out patient Clinic Chai Wan General Out patient Clinic Stanley General Out patient Clinic UTM (E) UTM (N) HK1980(E) HK1980(N) ArcMap displays all layers in a data frame in the coordinate system that has been set for that data frame. This process is called projection on the fly. Projection on the fly makes it possible to align data from different coordinate systems in the same data frame. This means that ArcMap displays a dataset stored in coordinate system A as if it were in coordinate system B. The coordinate system of the source data (stored on disk) is not changed.

10 16. We may save this layer as a shapefile by right clicking it and selecting Data > Export Data. In Export Data dialog box: Set Export All features Use the same coordinate system as: the data frame Name the Output feature class to be hki_clinics.shp (place it in J:\geog4017\lab3) Press [OK] to create the shapefile. Questions: Suggest another way to physically recalculate the coordinate of a data into a different projected and/or geographic coordinate system in ArcGIS for Desktop. In case we have a XY table which contains the longitudes and latitudes of different place, when we want to create a feature class using this table, which coordinate system would we use? 17. Remove all layers and table EXCEPT hki_clinics hki_hospitals.updated hkisland If you want to change the display order of the layers, you need to change the list method to be List By Drawing Order (in Table of Contents).

11 Share map as Map Package and Service to ArcGIS Online 18. Select File > Share As > Map Package In Map Package, select Upload package to my ArcGIS Online account and name it HKI health services. (you will be asked to sign in your ArcGIS Online account before proceed.) You need to select Sign in with ENTERPRISE ACCOUNT to sign in your ArcGIS Online account in HKBUGEOG.MAPS.ARCGIS.COM. In Item Description, type Hospitals and Clinics in Hong Kong Island in Summary, and health service; hospital; clinic; Hong Kong in Tags (pay attention that both fields are marked as required). No need to set Additional Files and Sharing at this moment.

12 19. Before we can procced, we should analyze the map package to check if there is any problem. Press the [Analyze] button at the upper right of the dialog box. You should aware that a High Severity error is found, which mention that Map document description is required for packaging. Right click this message and select Add Map Description. In the Map Document Properties dialog box, add GEOG4017 Lab 3 exercise in Description field, press [OK] to close it. Analyze the map package again and see if there is still any error, warning or message. 20. In the Map Package dialog box, press [Share] button. A warning will be prompted which ask you to save your map document. Press [Yes] to continue. A Succeeded message will appear when the map package is uploaded. Press [OK] to close it. 21. Use any browser (Internet Explorer, Chrome, Firefox, Safari, etc) you like, navigate to Sign in using the account information of your ArcGIS Online account. In the organization map site, check Content, you should be the HKI health services has been uploaded as a Map Package. In case you share it, other people may download it as a Map Package file (*.mpk) and open it in their workstations using ArcGIS for Desktop. 22. Return to ArcMap. This time we will share it as a service. Select File > Share As > Service. Select Publish a service in the first screen and press [Next >]. In the next screen, select My Hosted Services (Department of Geography, Hong Kong Baptist University) as connect and name the service hki_health_services. Press [Continue].

13 In the Service Editor dialog box, we do not have any item needs to be set at this moment (Some options have been set because you signed in and created a Map Package before). You may directly press the [Analyze] to check if there is any error. You may find some warnings and messages. They may influence your result but will not prevent you to create the service. Here you may press the [Publish] button to publish it straightly. You may also preview the service before you publish it. 23. Switch to ArcGIS Online in the browser. Refresh the Content page. You should find a feature layer (hosted) and a service definition are added. Open the hki_health_services Feature Layer (hosted) in Map Viewer (click its name then press [Open in Map Viewer] button. Move around and try to display it in different style. Know more about different item types in ArcGIS via the online help: Map Package: witharcmap/creating a map package.htm Feature Layer (Hosted): online/share maps/hostedweb layers.htm Service Definition: service definition files.htm

14 Question: In case you want to create a web app (say, a story map) using the data you prepared in ArcGIS for Desktop, which way should you share your map? 24. Once you finish exploring the uploaded services in ArcGIS Online, you may sign out from it (select Your Name > Sign Out) and close the browser. Moreover, return to ArcMap, select File > Sign Out (your id) to sign out ArcGIS Online. Save your map document again (File > Save) then quit ArcMap (File > Exit). Turn off your workstation before you leave.

Answer the following general questions: 1. What happens when you right click on an icon on your desktop? When you left double click on an icon?

Answer the following general questions: 1. What happens when you right click on an icon on your desktop? When you left double click on an icon? Name: Date: June 27th, 2011 GIS Boot Camps For Educators Practical: Explore ArcGIS 10 Desktop Tools and functionality Day_1 Lecture 1 Sources: o ArcGIS Desktop help o ESRI website o Getting to Know ArcGIS

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

Create a personal geodatabase

Create a personal geodatabase Create a personal geodatabase To create a personal geodatabase that corresponds to the same release as the ArcGIS for Desktop client you are using, follow these steps: 1. In ArcCatalog, right-click the

More information

Basic Tasks in ArcGIS 10.3.x

Basic Tasks in ArcGIS 10.3.x Basic Tasks in ArcGIS 10.3.x This guide provides instructions for performing a few basic tasks in ArcGIS 10.3.1, such as adding data to a map document, viewing and changing coordinate system information,

More information

Analysing crime data in Maps for Office and ArcGIS Online

Analysing crime data in Maps for Office and ArcGIS Online Analysing crime data in Maps for Office and ArcGIS Online For non-commercial use only by schools and universities Esri UK GIS for School Programme www.esriuk.com/schools Introduction ArcGIS Online is a

More information

LAB 1: Introduction to ArcGIS 8

LAB 1: Introduction to ArcGIS 8 LAB 1: Introduction to ArcGIS 8 Outline Introduction Purpose Lab Basics o About the Computers o About the software o Additional information Data ArcGIS Applications o Starting ArcGIS o o o Conclusion To

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap Harvard University Introduction to ArcMap Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 1: Basic Mapping in ArcMap Individual files (lab instructions,

More information

GIS LAB 8. Raster Data Applications Watershed Delineation

GIS LAB 8. Raster Data Applications Watershed Delineation GIS LAB 8 Raster Data Applications Watershed Delineation This lab will require you to further your familiarity with raster data structures and the Spatial Analyst. The data for this lab are drawn from

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

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas.

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. GIS LAB 1 Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. ArcGIS offers some advantages for novice users. The graphical user interface is similar to many Windows packages

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

How to calculate population and jobs within ½ mile radius of site

How to calculate population and jobs within ½ mile radius of site How to calculate population and jobs within ½ mile radius of site Caltrans Project P359, Trip Generation Rates for Transportation Impact Analyses of Smart Growth Land Use Projects SECTION PAGE Population

More information

Basic Queries Exercise - Haiti

Basic Queries Exercise - Haiti Basic Queries Exercise - Haiti Written by Barbara Parmenter, revised by Carolyn Talmadge on September 18, 2016 SETTING UP... 1 WHERE ARE THE HOSPITALS THAT ARE STILL OPERATING? (SELECT BY ATTRIBUTE )...

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

1. Open the New American FactFinder using this link:

1. Open the New American FactFinder using this link: Exercises for Mapping and Using US Census Data MIT GIS Services, IAP 2012 More information, including a comparison of tools available through the MIT Libraries, can be found at: http://libraries.mit.edu/guides/types/census/tools-overview.html

More information

GEOG1150/2015 Cartography Lab 5 Web Map Applications

GEOG1150/2015 Cartography Lab 5 Web Map Applications DEPARTMENT OF GEOGRAPHY HONG KONG BAPTIST UNIVERSITY Prof. Q. Zhou GEOG1150/2015 Cartography Lab 5 Web Map Applications Objectives Access to spatial data as well as advanced mapping and spatial analysis

More information

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment This activity is designed to introduce you to the Geography Lab and to the ArcMap software within the lab environment. Please

More information

Lesson 8 : How to Create a Distance from a Water Layer

Lesson 8 : How to Create a Distance from a Water Layer Created By: Lane Carter Advisor: Paul Evangelista Date: July 2011 Software: ArcGIS 10 Lesson 8 : How to Create a Distance from a Water Layer Background This tutorial will cover the basic processes involved

More information

Getting to Know ModelBuilder

Getting to Know ModelBuilder Getting to Know ModelBuilder Offered by Shane Bradt through the UNH Cooperative Extension Geospatial Technologies Training Center Developed by Sandy Prisloe and Cary Chadwick at the Geospatial Technology

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

Geocoding Reference USA data in ArcMap 9.3

Geocoding Reference USA data in ArcMap 9.3 Tufts GIS Tip Sheet Geocoding Reference USA data in ArcMap 9.3 Written by Barbara Parmenter Revised 3/1/2011 In this exercise, you will map businesses or services for a town in the Boston metropolitan

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

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

ArcGIS Online Tutorial

ArcGIS Online Tutorial ArcGIS Online Tutorial ArcGIS Online allows users to make interactive maps or applications and easily share them with others. The University of Minnesota has an organizational account that can be logged

More information

Tutorial 1 Exploring ArcGIS

Tutorial 1 Exploring ArcGIS Tutorial 1 Exploring ArcGIS Before beginning this tutorial, you should make sure your GIS network folder is mapped on the computer you are using. Please refer to the How to map your GIS server folder as

More information

Introduction to GIS 2011

Introduction to GIS 2011 Introduction to GIS 2011 Digital Elevation Models CREATING A TIN SURFACE FROM CONTOUR LINES 1. Start ArcCatalog from either Desktop or Start Menu. 2. In ArcCatalog, create a new folder dem under your c:\introgis_2011

More information

Stacey Maples GIS Specialist and Instruction Coordinator, Yale University Map Department

Stacey Maples GIS Specialist and Instruction Coordinator, Yale University Map Department WHAT S NEW IN ARC CGIS 10-5 THINGS YOU SHOUL LD KNOW! (OK, THERE S ACTUALLY MORE THAN 5 HERE) Stacey Maples GIS Specialist and Instruction Coordinator, Yale University Map Department stacey.maples@yale.edu

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

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

In order to follow this set of directions you will need the following

In order to follow this set of directions you will need the following How to Create Maps & Figures in ArcView 9x In order to follow this set of directions you will need the following 1) the Jenny s Louisiana GIS Instructional CD 2) a computer with ArcGIS on it (version 9.0

More information

Geocoding vs. Add XY Data using Reference USA data in ArcMap

Geocoding vs. Add XY Data using Reference USA data in ArcMap Geocoding vs. Add XY Data using Reference USA data in ArcMap 10.4.1 Written by Barbara Parmenter. Revised by Carolyn Talmadge 2/27/2017 GETTING BUSINESS DATA FROM REFERENCE USA BY NAICS AND CITY... 2 MODIFY

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

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

Exercise 4 Compiling a Spatial Database: Adding and Linking Attribute Data

Exercise 4 Compiling a Spatial Database: Adding and Linking Attribute Data Geog, IES 377/Cee 357 Exercise 4 Page: 1/9 GEOG 377/CEE 357: An Introduction to Geographic Information Systems Exercise 4 Compiling a Spatial Database: Adding and Linking Attribute Data 1. Introduction

More information

GPS TO GIS EXERCISE (30 PTS)

GPS TO GIS EXERCISE (30 PTS) GPS TO GIS EXERCISE (30 PTS) This exercise will allow you to demonstrate your cumulative knowledge of using a GPS receiver to collect data with locational information, downloading this data to a desktop

More information

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment This activity is designed to introduce you to the Geography Lab and to the ArcMap software within the lab environment. Before

More information

Exercise 3-1: Soil property mapping

Exercise 3-1: Soil property mapping Exercise 3-1: Soil property mapping Mapping objectives: Create a soil analysis point layer from tabular data in QGIS Create a continuous surface soil property map using Kriging Interpolation in SAGA GIS

More information

Tutorial 1: Downloading elevation data

Tutorial 1: Downloading elevation data Tutorial 1: Downloading elevation data Objectives In this exercise you will learn how to acquire elevation data from the website OpenTopography.org, project the dataset into a UTM coordinate system, and

More information

Introduction to Geospatial Technology Lab Series. Lab: Basic Geospatial Analysis Techniques

Introduction to Geospatial Technology Lab Series. Lab: Basic Geospatial Analysis Techniques Introduction to Geospatial Technology Lab Series Lab: Basic Geospatial Analysis Techniques Document Version: 2012-08-24 Lab Author: Richard Smith Organization: Copyright 2003-2012 Center for Systems Security

More information

A Second Look at DEM s

A Second Look at DEM s A Second Look at DEM s Overview Detailed topographic data is available for the U.S. from several sources and in several formats. Perhaps the most readily available and easy to use is the National Elevation

More information

Chapter 7. A Quick Tour of ArcGIS Pro

Chapter 7. A Quick Tour of ArcGIS Pro Chapter 7 A Quick Tour of ArcGIS Pro Skills you will learn: This tutorial is intended to get you going using ArcGIS Pro, a new desktop application that is part of ArcGIS Desktop. A separate tutorial gives

More information

In this lab, you will create two maps. One map will show two different projections of the same data.

In this lab, you will create two maps. One map will show two different projections of the same data. Projection Exercise Part 2 of 1.963 Lab for 9/27/04 Introduction In this exercise, you will work with projections, by re-projecting a grid dataset from one projection into another. You will create a map

More information

GIS DATA SUBMISSION USER GUIDE. Innovation and Networks Executive Agency

GIS DATA SUBMISSION USER GUIDE. Innovation and Networks Executive Agency Innovation and Networks Executive Agency GIS DATA SUBMISSION USER GUIDE Innovation and Networks Executive Agency (INEA) W910 Chaussée de Wavre 910 B-1049 Brussels, Belgium Tel: +32 (0)2 29 95252 Fax: +32

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

Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS

Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS This tutorial will introduce you to the following: Websites where you may browse to find geospatial information Identifying spatial data, usable

More information

Finding GIS Data and Preparing it for Use

Finding GIS Data and Preparing it for Use 02-Finding_Data_And_Preparing_It_For_GIS_Analysis_92.Doc Page 1 of 16 Getting Ready for the Tutorial Sign Up for the GIS-L Listserv Finding GIS Data and Preparing it for Use The Yale University GIS-L Listserv

More information

Exporting from GIS 9.0 to AutoCAD

Exporting from GIS 9.0 to AutoCAD Exporting from GIS 9.0 to AutoCAD Once a map file is created in GIS with all the desired layers, selected data within a pre-defined boundary can be exported as a AutoCAD.dwg file. Setting up clip boundary

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

ArcGIS Desktop: Introduction to Geoprocessing with ModelBuilder Kevin Armstrong ESRI

ArcGIS Desktop: Introduction to Geoprocessing with ModelBuilder Kevin Armstrong ESRI ArcGIS Desktop: Introduction to Geoprocessing with ModelBuilder Kevin Armstrong ESRI SERUG 2008 1 What is ModelBuilder? A user-friendly way to automate a series of tools Part of the ArcGIS geoprocessing

More information

Chapter 7. A Quick Tour of ArcGIS Desktop (ArcMap)

Chapter 7. A Quick Tour of ArcGIS Desktop (ArcMap) Chapter 7 A Quick Tour of ArcGIS Desktop (ArcMap) Skills you will learn: This tutorial is intended to get you going using ArcMap, which is the traditional desktop application that is part of ArcGIS Desktop.

More information

How to Export a Report in Cognos Analytics

How to Export a Report in Cognos Analytics IBM Cognos Analytics How to Export a Report in Cognos Analytics Reports viewed in IBM Cognos Analytics can be exported in many formats including Excel. Some of the steps for exporting are different depending

More information

2) Make sure that the georeferencing extension is on by right-clicking in the task bar area and selecting Georeferencing

2) Make sure that the georeferencing extension is on by right-clicking in the task bar area and selecting Georeferencing HGIS Workshop Module 1 Georeferencing Large Scale Scanned Historical Maps Objective: Learn the Principles of Georeferencing 1) In ArcMap, open the project 01 data\arcdata_10_1\arcdata\toronto\georeference.mxd

More information

Data Assembling Topics:

Data Assembling Topics: Topics: 1. GPX to Shape file 2. Data conversion with FME 3. Create a polygon feature 4. Merging /Appending data into a new dataset 5. Reproject data from one coordinate system to another 6. Data clipping

More information

ModelBuilder: An Introduction. Kevin Armstrong

ModelBuilder: An Introduction. Kevin Armstrong ModelBuilder: An Introduction Kevin Armstrong What is ModelBuilder? A user-friendly way to automate a series of tools Part of the ArcGIS geoprocessing framework - ModelBuilder can run any tool in the ArcToolbox,

More information

How to Create Metadata in ArcGIS 10.0

How to Create Metadata in ArcGIS 10.0 How to Create Metadata in ArcGIS 10.0 March 2012 Table of Contents Introduction... 1 Getting Started... 2 Software Requirements... 2 Configure ArcGIS Desktop to View FGDC Metadata... 2 Other Thoughts...

More information

ArcGIS Server: publishing geospatial data to the web using the EEA infrastructure

ArcGIS Server: publishing geospatial data to the web using the EEA infrastructure ArcGIS Server: publishing geospatial data to the web using the EEA infrastructure *IMPORTANT: Map Services should be published using the EEA Map Services Tick Sheet for guidance. Contact Sebastien Petit

More information

دورة تدريبية عن تطبيقات برنامج ARC GIS

دورة تدريبية عن تطبيقات برنامج ARC GIS دورة تدريبية عن تطبيقات برنامج ARC GIS مايو 2009 دورة تدريبيت عن تطبيقاث برنامج ARC GIS 2009 مايو Table of Contents Introduction... viii Module 1: Introduction to ArcGIS 9 Module Objectives... 1-1 ArcGIS

More information

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Mac OS device Step 1. To sign in to the Appserv Desktop Access website, enter the following address into the Safari browser address bar. Please Note: This documentation

More information

Editing with ArcGIS. Contents

Editing with ArcGIS. Contents Editing with ArcGIS This tutorial is designed to introduce you to the basic editing tools used in ArcMap for the both the creation and modification of geospatial data. Editing is an essential skill for

More information

From Non-Spatial Data to Spatial Data. Geocoding & Georeferencing in ArcGIS

From Non-Spatial Data to Spatial Data. Geocoding & Georeferencing in ArcGIS 03-Geocoding & Georeferencing In Arcgis.Doc Page 1 of 10 From Non-Spatial Data to Spatial Data. Geocoding & Georeferencing in ArcGIS Objectives Upon completion of this tutorial, you should be able to perform

More information

Finding and Using Spatial Data

Finding and Using Spatial Data Finding and Using Spatial Data Introduction In this lab, you will download two different versions of the National Wetlands Inventory (NWI) dataset for a region of Massachusetts, from a source on the internet.

More information

ArcGIS. Desktop. A Selection of Time-Saving Tips and Shortcuts

ArcGIS. Desktop. A Selection of Time-Saving Tips and Shortcuts ArcGIS Desktop A Selection of Time-Saving Tips and Shortcuts Map Navigation Refresh and redraw the display F5 9.1, Suspend the map s drawing F9 9.1, Zoom in and out Roll the mouse wheel backward and forward.

More information

Appendix Z Basic ArcMap and GDSE Tools

Appendix Z Basic ArcMap and GDSE Tools Appendix Z Basic ArcMap and GDSE Tools Introduction IFMAP has been developed within ESRI s ArcMap interface. As such, the application is inherently map-based. Although a user can enter tabular data through

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

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

Introduction to Geographic Information Systems Spring 2016

Introduction to Geographic Information Systems Spring 2016 Introduction to Geographic Information Systems Spring 2016 Exercise 2 Introduction to ArcGIS 10 Projects This exercise will introduce you to the common set-up functions of the ESRI ArcGIS software package.

More information

Priming the Pump Stage II

Priming the Pump Stage II Priming the Pump Stage II Modeling and mapping concentration with fire response networks By Mike Price, Entrada/San Juan, Inc. The article Priming the Pump Preparing data for concentration modeling with

More information

BIO8014 GIS & Remote Sensing Practical Series. Practical 1: Introduction to ArcGIS Desktop

BIO8014 GIS & Remote Sensing Practical Series. Practical 1: Introduction to ArcGIS Desktop BIO8014 GIS & Remote Sensing Practical Series Practical 1: Introduction to ArcGIS Desktop 0. Introduction There are various activities associated with the term GIS, these include visualisation, manipulation

More information

GIS DATA SUBMISSION USER GUIDE. Innovation and Networks Executive Agency

GIS DATA SUBMISSION USER GUIDE. Innovation and Networks Executive Agency Innovation and Networks Executive Agency GIS DATA SUBMISSION USER GUIDE Innovation and Networks Executive Agency (INEA) W910 Chaussée de Wavre 910 B-1049 Brussels, Belgium Tel: +32 (0)2 29 95252 Fax: +32

More information

Schematics in ArcMap Tutorial

Schematics in ArcMap Tutorial Schematics in ArcMap Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Introducing Schematics in ArcMap Tutorial........................ 3 Exercise 1: Getting familiar with Schematics

More information

GPS to GIS Tutorial Exploration of Native Plants

GPS to GIS Tutorial Exploration of Native Plants Grossmont College Introduction to GIScience NAME: Instructors: Curran & Goodman 1 GPS to GIS Tutorial Exploration of Native Plants 1. Create a folder on your USB drive titled: GPS1 2. Using your GPS receiver,

More information

Creating a Smaller Data Set from a Larger Data Set Vector Data

Creating a Smaller Data Set from a Larger Data Set Vector Data Creating a Smaller Data Set from a Larger Data Set Vector Data Written by Barbara Parmenter, revised by Carolyn Talmadge January 16, 2015 USING THE SELECTION METHOD QUICK METHOD BY CREATING A LAYER FILE...

More information

CONTENTS 1 INTRODUCTION 3 ARCGIS 5 START ARCMAP 11 IMPORT 1: MAP DATA 12 ADD WIND FARM DATA 21 CREATE A MAP TO INSERT IN A REPORT 32

CONTENTS 1 INTRODUCTION 3 ARCGIS 5 START ARCMAP 11 IMPORT 1: MAP DATA 12 ADD WIND FARM DATA 21 CREATE A MAP TO INSERT IN A REPORT 32 CONTENTS CONTENTS 1 INTRODUCTION 3 SCENARIO 3 WHAT WILL I LEARN? 3 WHAT DATA DO I HAVE? 4 ARCGIS 5 ARCMAP 6 ARCCATALOG 8 ARCTOOLBOX 9 START ARCMAP 11 IMPORT 1:250000 MAP DATA 12 CREATE A GROUP LAYER 16

More information

CE 549 Lab 1 - Linking Streamflow Data to a Gauging Station

CE 549 Lab 1 - Linking Streamflow Data to a Gauging Station CE 549 Lab 1 - Linking Streamflow Data to a Gauging Station Prepared by Venkatesh Merwade Lyles School of Civil Engineering, Purdue University vmerwade@purdue.edu January 2018 Objective The objective of

More information

Data Interoperability Extension Tutorial

Data Interoperability Extension Tutorial Data Interoperability Extension Tutorial Copyright 1995-2012 Esri All rights reserved. Table of Contents About the Data Interoperability extension tutorial...................... 3 Exercise 1: Using direct-read

More information

FAQ & Troubleshooting

FAQ & Troubleshooting FAQ & Troubleshooting What is the most common issue users have when using the site? Pop-Up Blocker!!! Any link external to the viewer requires a new window to be opened in the browser. See My map or report

More information

Raster: The Other GIS Data

Raster: The Other GIS Data Raster_The_Other_GIS_Data.Docx Page 1 of 11 Raster: The Other GIS Data Objectives Understand the raster format and how it is used to model continuous geographic phenomena. Understand how projections &

More information

Installing the Toolkit

Installing the Toolkit Installing the Toolkit The Toolkit is an ArcGIS Add-in that is compatible with ArcGIS 10.0 and above. Please see the Toolkit website (http://www.fs.fed.us/eng/rsac/programs/teui/about.html) for previous

More information

ArcGIS 10 Student Installation Batch File Pre-Installation Procedures for Windows 7

ArcGIS 10 Student Installation Batch File Pre-Installation Procedures for Windows 7 ArcGIS 10 Student Installation Batch File Pre-Installation Procedures for Windows 7 Removing Previous Versions of ArcGIS You must first completely remove all previous versions of ArcGIS that might conflict

More information

BC Spatial Member Map Viewer. Version 2.0. User Guide. May 2015

BC Spatial Member Map Viewer. Version 2.0. User Guide. May 2015 BC Spatial Member Map Viewer Version 2.0 User Guide May 2015 1 P a g e Revised: 16 June 2015 Contents Contents... 2 Introduction... 4 System Requirements... 5 BC Spatial Map Viewer... 6 I. Navigation Tools...

More information

This support note will discuss several methods of creating no spray zones for Sentinel GIS>

This support note will discuss several methods of creating no spray zones for Sentinel GIS> Reason Sentinel Adulticiding support a polygon no spray layer. Adulticiding mobile software warns the driver when they are approaching a no spray zone so they can turn off the sprayer. Because no spray

More information

Basic Mapping: Livelihood Zones In Haiti

Basic Mapping: Livelihood Zones In Haiti Basic Mapping: Livelihood Zones In Haiti - 2009 Barbara Parmenter, revised by Carolyn Talmadge 9/10/2017 for ArcMap 10.5.1 DATA SOURCES... 1 MAPPING NETWORK DRIVES OUTSIDE THE DATA LAB... 2 SETTING UP

More information

NMCRIS Map Service Application Feature Editing

NMCRIS Map Service Application Feature Editing NMCRIS Map Service Application Feature Editing Exercise goal: Users will edit the polygonal boundaries for activities and resources in the NMCRIS Map Service. Important: This exercise is a sample presentation

More information

Ex. 4: Locational Editing of The BARC

Ex. 4: Locational Editing of The BARC Ex. 4: Locational Editing of The BARC Using the BARC for BAER Support Document Updated: April 2010 These exercises are written for ArcGIS 9.x. Some steps may vary slightly if you are working in ArcGIS

More information

GEOG 487 Lesson 7: Step- by- Step Activity

GEOG 487 Lesson 7: Step- by- Step Activity GEOG 487 Lesson 7: Step- by- Step Activity Part I: Review the Relevant Data Layers and Organize the Map Document In Part I, we will review the data and organize the map document for analysis. 1. Unzip

More information

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project. v. 10.2 GMS 10.2 Tutorial Working with map projections in GMS Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2011 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Exercise 3: Creating a Geodatabase

Exercise 3: Creating a Geodatabase Exercise 3: Creating a Geodatabase Introduction: A database (DB) is an organized collection of data, that we can visualize as being a group of tables. An example of a simple database can be seen below:

More information

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcGIS Procedures NUMBER OPERATION APPLICATION: TOOLBAR 1 Import interchange file to coverage 2 Create a new 3 Create a new feature dataset 4 Import Rasters into a 5 Import tables into a PROCEDURE Coverage

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

In this exercise we will:

In this exercise we will: Intro to GIS Exercise #3 TOC Data frame visual hierarchy / Select by Attribute / Select by Location / Geoprocessing IUP Dept. of Geography and Regional Planning Dr. Richard Hoch Please prepare answers

More information

BASICS OF SPATIAL MODELER etraining

BASICS OF SPATIAL MODELER etraining Introduction BASICS OF SPATIAL MODELER etraining Describes the Spatial Modeler workspace and functions and shows how to run Spatial Models. Software Data Spatial Modeler N/A Transcript 0:10 Thank you for

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

Objective: To be come more familiar with some more advanced applications in ArcGIS.

Objective: To be come more familiar with some more advanced applications in ArcGIS. Advanced Procedures in ArcGIS 2005 SPACE Workshop OSU Author: Jason VanHorn Purpose: Having gone through Getting to know ArcGIS, you are now ready to do some more advanced applications. In this lab you

More information

New Media in Landscape Architecture: Advanced GIS

New Media in Landscape Architecture: Advanced GIS New Media in Landscape Architecture: Advanced GIS - Projections and Transformations - Version 10.2, English ANHALT UNIVERSITY OF APPLIED SCIENCES Hochschule Anhalt Author: Dr. Matthias Pietsch Tutorial-Version:

More information

Downloading shapefiles and using essential ArcMap tools

Downloading shapefiles and using essential ArcMap tools CHAPTER 1 KEY CONCEPTS downloading shapefiles learning essential tools exploring the ArcMap table of contents understanding shapefiles customizing shapefiles saving projects Downloading shapefiles and

More information

Overview. Setting Up. Geospatial Centre University of Waterloo November 2015

Overview. Setting Up. Geospatial Centre University of Waterloo November 2015 Overview ArcGIS Online is a web-based mapping and app-building site created by Esri, the world leader in GIS software. In an effort to empower users of all levels to create interactive maps and applications

More information

Laboratory Topic 11: Programming in Model Builder Network (Automating Suitability Analysis)

Laboratory Topic 11: Programming in Model Builder Network (Automating Suitability Analysis) Laboratory Topic 11: Programming in Model Builder Network (Automating Suitability Analysis) [ LAEP/GEOG c188 ] Model Builder in ArcGIS 10.4.1 Part I: Introduction Part II: Automate Processing in Suitability

More information

Model Builder Tutorial (Automating Suitability Analysis)

Model Builder Tutorial (Automating Suitability Analysis) Model Builder Tutorial (Automating Suitability Analysis) Model Builder in ArcGIS 10.x Part I: Introduction Part II: Suitability Analysis: A discussion Part III: Launching a Model Window Part IV: A Simple

More information

GIS IN ECOLOGY: CREATING RESEARCH MAPS

GIS IN ECOLOGY: CREATING RESEARCH MAPS GIS IN ECOLOGY: CREATING RESEARCH MAPS Contents Introduction... 2 Elements of Cartography... 2 Course Data Sources... 3 Tasks... 3 Establishing the Map Document... 3 Laying Out the Map... 5 Exporting Your

More information