Appendix Interaction Data: Classroom Activities

Size: px
Start display at page:

Download "Appendix Interaction Data: Classroom Activities"

Transcription

1 316 Appendix Interaction Data: Classroom Activities Adam Dennett University of Leeds, UK ABSTRACT This appendix contains a set of three activities that allow you to gain some familiarity with handling migration and commuting data and producing flow maps with three different GIS/mapping systems: MapInfo/MapBasic, Flowmap and Postgis. In all of the exercises you will be using data obtained from the Web-based Interface to Census Interaction Data (WICID). To access WICID, go to the CIDER website: click on the WICID logo and follow the login instructions. If you have not already done so you will need to register with the Census Portal before being able to access the data. You may also need to agree to some special conditions to access all features on the site. ACTIVITY 1: flow MAPPING Of STUDENT MIGRATIONS IN ENGLAND In this exercise you will select an area of England, download the flows of students to this area from all other areas and produce a flow map representing the volume of these flows. To complete this exercise fully, you will need to have MapInfo installed on your computer. Part 1: Data Extraction from WICID 1.1 Log into WICID. Click on continue and you should be taken to the general query interface to start building your query. 1.2 Start by clicking on the Data tab. When selecting data in this exercise, we will Select by dataset and table > Migration data > , and use the 2001 SMS level 1 dataset > Table 5 Economic Activity by Sex. 1.3 In this table, you should select the Total economically active full-time students as well Copyright 2010, IGI Global, distributing in print or electronic forms without written permission of IGI Global is prohibited.

2 as the Total economically inactive students (cells 22 and 31). Once ticked, click the Add selected cells button. 1.4 At this point, we are going to derive a new variable from the two just selected. Click the Derive new variables button, select both items and continue. Give your new aggregate variable the name Total students and Remove the old variables from the list of selected items before clicking continue. You are now ready to select your origin and destination geographies. 1.5 Firstly, click on Geography > Select or edit origins to select the origin geography you wish to use. 1.6 For this task, choose List selection and then select CIDS 1991/2001 common geography zones. 1.7 Confirm that you wish to use this geography and then click the Add all areas button as we are going to examine the numbers of students migrating from all 100 zones to our zone of choice. 1.8 Now you will need to select a destination zone. Click select Destinations > List selection and Confirm that you wish to proceed using the same geography. 1.9 Now you may select any destination that interests you. Once you have selected your destination zone by ticking the box next to it, click Add chosen areas to add the area to your destination selection At this point you may wish to click on the Query button at the very top of the page to view the summary of your current query. You should see that 100 origins are selected along with the one destination you have chosen. There should also be a green light on the Geography tab, indicating that you can proceed with data extraction If you are happy with your query, you should click the Run tab to extract your data and then Continue to output pages selecting Tabular output On the tabular output plan page, you should select Origin-destination pair list as the output layout and Comma separated values as the output format. Click on Preview output and download file to download your data selection. Call your file StudentMigrations. csv before clicking the button to download the file to a specified directory of your choice Once downloaded, open the file and delete the first four rows replacing the headings in the first row above the data with the words Origin, Destination and Total students. Scroll to the bottom of your file and delete the notes and source information as it is not required. Save the file as an excel (.xls) file and close it. Part 2: Mapping the Information Using MapInfo 2.1 Start MapInfo and Open the file UK- 100Zones.TAB which can be found here: uk100zones.zip. Also open your Student- Migrations.xls file and save a copy in Map- Info as StudentMigrations.TAB (in newer versions of MapInfo the.tab file is created automatically when you open the excel file, so you may not have to save a copy). Obtaining Zone Centroid Coordinates 2.2 For this mapping exercise you will need to find the centroid of each of the 100 Zones. To do this, you will need to select Tools > Coordinate extractor > Extract coordinates (if the coordinate extractor is not already listed, you will need to go into the Tool manager and tick the box next to coordinate extractor to add it to your list). 2.3 You will need to extract the coordinates from the UK100Zone table. Check that the projection is set to British National Grid 317

3 and you should click the Create new columns to hold coordinates button and call the new table columns OriginX and OriginY. Once you click OK, you should be able to view the table with the X and Y coordinates created for each of the 100 Zones. Adding the Attribute Data to the Boundary Data 2.4 To combine your attribute and boundary data into one mappable table, you will need to use the SQL select function in MapInfo. Go to Query > SQL Select. When the module opens you should select all columns (*) from the tables StudentMigrations and UK100Zones where condition column StudentMigrations. origin = column UK100Zones.Cname. When you click OK your two tables should now be joined together into a single table. 2.5 Save the query as a new table called StudentMigrationFlows.TAB and then close all tables. Creating Destination Zone Coordinates 2.6 Open your new StudentMigrationFlows. TAB file. Also open the UK100Zones file. To begin with, you will need to add two new columns to your StudentMigrationFlows table. To do this, go to Table > Maintenance > Table Structure and select the StudentMigrationFlows table. Add two fields named DestX and DestY of the type Float. Click OK and then re-open the table. You will see that two new empty columns have been added to the end of your table. 2.7 To create the destination coordinates in these columns, do the following: Select Table > Update column. Firstly, update your new DestX column, and get the value from your UK100Zones table. You will need to join your tables where destination in your StudentMigrationFlows table matches Cname in the UK100Zones table. In this case, you are copying the value of OriginX from where your destination appears in the origin column, so select calculate the value of OriginX, before clicking OK. You should now see your DestX column updated with the X coordinates from your selected destination. To fill your DestY column with coordinates, follow the previous step substituting OriginX for OriginY where appropriate. Once done, save your table. Mapping the Migration Flows 2.8 Your StudentMigrationFlows table should now contain the UK100Zones boundaries, the data you wish to map and the coordinates of the zone centroids for both the origins and destination you want to map. You now will need to make a copy of StudentMigrationFlows, and call it something like StudentMigrationFlows1. To do this, use the Save copy as option in the file menu. You are doing this as it is this version of the table you are going to make the flow lines from. 2.9 Close all tables and open your new Student- MigrationFlows1 table. Go to the Options menu and select Show MapBasic Window. Once the MapBasic window has opened, to create the flow lines, type the following: Update StudentMigrationFlows1 set obj = CreateLine(OriginX, OriginY, DestX, DestY) 2.10 Once you hit the return button, you should see lines created from the centroids of each of the 100Zones origins to the centroid of your chosen destination. You may find that the map window remains blank. If this occurs, it is because the Map Window settings are incorrect. You can solve this problem by going to the Options menu > Preferences > Map Window and setting both the Table 318

4 projection and Session Projection to British Coordinate Systems and British National Grid. Then run your MapBasic command again and the flows should appear in the Map Window Currently you will only see the lines displayed on your map. To display the UK100Zones boundaries with your map, you should reopen either the StudentMigrationFlows table or the UK100Zones table. Doing this should automatically add the zone boundaries to your map with flows lines This next stage is to produce a thematic map so that the flow lines are displayed of differing thickness depending on the flow size. Go to the Map menu and select Create thematic map. You should choose Line Ranges, Varying Width style. In step 2, select StudentMigrationFlows1 and choose a variable you wish to see mapped in this case your only choice is likely to be Total students. Click Next to go to step 3 where you can customise your map (for example you may wish to alter the colour of some of the lines to add additional clarity to your map, or change the legend). Click OK and a flow map will appear which allows easy interpretation of from where students are migrating from, to your chosen area. Figure A.1 shows the distribution of student flows to Leeds from 100 zones in the rest of England in Figure A.1. An example flow map showing student flows to Leeds from 100 zones areas in England 319

5 ACTIVITY 2: ANALYSING REGIONAL MIGRATION flows IN BRITAIN USING flowmap SOfTWARE Activity 1 made use of proprietary software in the form of MapInfo to analyse flow data. We recognise that not every user of interaction data has access to commercially developed, GIS packages which are sometimes expensive. Therefore the next two activities make use of freely available software to analyse flow data. In this activity, we make use of Flowmap a GIS package designed specifically to handle data related to origin and destination pairs. Flowmap can be downloaded from: uu.nl/. Download and install Flowmap on your computer if you wish to attempt this activity. Part 1: Data Extraction from WICID For this exercise you can choose any migration variable you wish. 1.1 Log into WICID. Click on continue and you should be taken to the general query interface to start building your query. 1.2 Start by clicking on the Data tab. When selecting data in this exercise you can try the Select by variable option. This facility allows you to select variables that fall under any of the categories listed. By clicking on one of the categories, the list will be expanded to include all of the datasets and tables that feature variables in this category. 1.3 You will see that datasets are identified by the census years they are associated with, as well as by an SMS, SWS or STS identifier, indicating whether the data are for migration or commuting. In this exercise, we will be using post-1999 Government Office Regions as our geography, so choose a 2001 data set. We will also be looking at migration flows, so choose an SMS set (although if you wanted to look at inter-regional commuting, this would be possible), remembering that level 1 data are likely to be more accurate than level 2 or 3 data. Click the table you wish to take data from. 1.4 Once you are on the variable selection screen for your chosen table, choose one variable you wish to analyse (or alternatively a new variable derived from a number of variables see Activity 1 for instructions on deriving new variables). Once you have selected your variable, click Add select cells and then click the Geography tab to begin selecting your origins and destinations. 1.5 Firstly, click Select or edit origins to select the origin geography you wish to use. 1.6 For this task choose List selection and then select UK Government Office Regions (1999-) 1.7 Confirm that you wish to use this geography and then tick areas 1-11 (Government Office Regions in England plus Scotland and Wales) before clicking the Add chosen areas button. 1.8 Now you will need to select destination zones. Click select Destinations > Copy selection and click the Origins -> Destinations button to select your destinations to equal your origins. 1.9 At this point you may wish to click on the Query button at the very top of the page to view the summary of your current query. You should see that 11 origins are selected along with the same 11 destinations. Your data item will also be shown. There should now be a green light on the Geography tab, indicating that you can proceed with data extraction If you are happy with your query, you should click the Run tab to extract your data and then Continue to output pages selecting tabular output. 320

6 1.12 On the tabular output plan page you should select Origin-destination pair list as the output layout and comma separated values as the output format. Click on Preview output and download to download your data selection. Call your file RegFlow2.csv before clicking the button to download the file to a specified directory of your choice Once downloaded, open the file and delete the first four rows replacing the headings in the first row above the data with the word label1, label2 and score. Scroll to the bottom of your file and delete the notes and source information as it is not required You should now save your file in.dbf format (dbf III if you have a choice) with the same file name (e.g. RegFlow2.dbf). Notes (i) (ii) If you are using Excel 2007, you will not be able to save in.dbf format. To get around this you will need to save your data as an Excel (.xls or.xlsx) file, and open this file in MS Access. In Access you will be able to save or export the file as a.dbf. For Flowmap to recognise the.dbf data file, the file name must be in an exact format. It MUST consist of 7 characters no more, no less and end in 2.dbf. Any file name not in this precise format will not be recognised by the program. Part 2: Mapping the Data in flowmap Preparing the Files 2.1 First you will need to place a number of files into a project directory for Flowmap to read. These additional files can be found on the CIDER website at: cider/training/training.php under Additional data for use with Flowmap practical. 2.2 Download these files and unzip them into a directory of your choice (preferably the default C:\Program Files\FLOWMAP directory, but any will suffice). The unzipped file should contain two files: GB_Rgion.BNA and Region01.DBF. To the directory where these two files are now located, also add the RegFlow2.dbf file you created in the last section. 2.3 Start Flowmap. The first thing that you will need to do is create a map file from the.bna import file you have just unzipped. Go to File > Convert Files > BNA > BNA -> Flowmap and locate the GB_Rgion.BNA file. Flowmap should then give you a default file name for the new map file. This will probably be GB_Rgion.006. Click Save. It may ask you to select vector type. Choose Polygon. It may also find some topological errors in the file. This is not a problem for this exercise and you should just choose the Continue regardless option. 2.4 Select File > New Project. The New Project window (Figure A.2) will open. You might need to change your workspace directory so it matches the directory you have just unzipped the additional files into. 2.5 You should now add the files you have created and downloaded to the project. As above, the map file will be GB_Rgion.006; the origin and destination files will be Region01. dbf; and the flow file will be RegFlow2.dbf (with origin set as LABEL1, destination as LABEL2 and flow size as SCORE). You should also tick the three boxes under View Settings and click the Set button. Click Save as and save your project. Mapping the Data 2.6 Now a map of your flow data can be created. To draw the base map go to Maps > Advanced Display > Draw Map File > Draw Edges/Lines > Uniform Drawing and select 321

7 Figure A.2. New Project window in Flowmap an appropriate line style. This should draw your base map. 2.7 Before drawing the flow lines, it is useful to adjust the symbology so that larger flows are more clearly distinguished from smaller flows. To do this go to File > Edit Symbology Settings > Customise Flow Symbology settings and click on one of the triangle symbols. Set the thickness to Max and click Ok. 2.8 To draw the flows go to Maps > Advanced Display > Draw Desire Lines from Flow File and select the symbol you have just adjusted. You may also wish to Set intrazonal interaction as symbols to display intra-zonal flows. Your finished flowmap should resemble something similar to the example in Figure A.3. ACTIVITY 3: DISPLAYING INTERACTION DATA USING OPEN SOURCE DATABASE AND GIS SOfTWARE: MAPPING THE PREfERRED METHOD Of TRAVEL TO WORK for OUTPUT AREAS IN LONDON In this activity, you will be introduced to two very powerful pieces of free (open source) software: PostgreSQL and Quantum GIS. PostgreSQL is a relational database management system which importantly has a spatial extension known as PostGIS. For this exercise you will need to install PostgreSQL with the PostGIS extension. PostgreSQL along with PostGIS can be downloaded and installed from the PostgreSQL website: Note: When you install the program, if you have not used it before it is recommended that you 322

8 Figure A.3. Intra- and inter-region flows depicted using Flowmap database tables. QGIS can be downloaded from - the version used in this example is version Newer versions of the software may now be available. Part 1: Downloading your Data from WICID and UKBORDERS This section will go through, in detail, the process of selecting output area boundary data from UKBORDERS for all output areas in London. It will also describe extracting from WICID, 2001 commuting data by all methods of transport (with car passenger and car driver aggregated into one variable) from all output areas as an origin and the London region as a destination (downloaded as a paired list. If this is a familiar process, attempt it yourself and move straight to Part 2, otherwise follow these instructions: install to the host localhost, on the default port 5432, with a username postgres and a password postgres. Quantum GIS (QGIS) is a user friendly, graphical interfaced Geographical Information System developed by a community of open source developers. QGIS supports vector, raster and database formats and, importantly for this exercise, has direct support for PostGIS spatially enabled 1.1 Customised boundary data downloads can take some time from UKBORDERS, so we will go through this process first in order to get the boundaries by the end of Part 1. Go to the UKBORDERS website ac.uk/ukborders/ and log in. 1.2 Choose the Boundary Data Selector and select England > Census boundaries > Post 1999 and click Find. Click English output areas > List areas click Greater London > Expand. You now see that the search summary has your target geography as English Output Areas and the selected area as Greater London. Check that the data format is ESRI Shapefile. If it is not, use the Format tab at the top of the page to change the format. Click Extract Boundary Data. You will now be taken to the data extraction screen. It is normal that because of the large number of boundaries being extracted you will be taken to the UKBORDERS bookmarking facility. Bookmark this page in your browser and return to it at the end of Part

9 1.3 Log into WICID. Click on continue and you should be taken to the general query interface to start building your query. 1.4 Start by clicking on the Data tab. When selecting data in this exercise, we will Select by dataset and table > Commuting data > 2001, and use the 2001 SWS level 3 dataset > Table 1 Method of travel to work. 1.5 We want to select all persons and all methods of travel, so check boxes, 4, 7, 10, Once checked, click the Add selected cells button. The status at the top of the page should inform you that eleven data items have been selected. Two of these items (car driver and car passenger) will need to be aggregated into a single item, however, before we continue. 1.6 At the bottom of the page click on the Derive new variables link. This will take you to a new page where the two variables can be selected. Tick the boxes next to car passenger and car driver and click Continue. Call your new variable car and check the option to remove the old variables from the list before clicking Continue. 1.7 You are now ready to select you geographies. Click the Geography tab and select origins first. Choose List selection > All geographies > UK Output Areas 2001 > Select a higher level geography > UK Government Office Regions (1999-) > Confirm that you wish to proceed with this geography. Now, by ticking London and clicking the Add chosen areas button you will select all 24,140 output areas within London. 1.8 You can now select your destination. Click Select destinations > List selection > All geographies > UK Government Office Regions (1999-) > Confirm and check London before clicking Add chosen areas. This should select just the one area, London, as your destination. 1.9 You can now click the Run tab to execute your query. Once the query is complete select Continue > Tabular output. On the tabular output planner page make sure that your output layout is a pair list and the format is Comma separated values. Download your file and save it to an appropriate location If you return to your UKBORDERS bookmark, your data should now have extracted and you should be able to download the zip file containing your boundary data. Download this to the same location as your commuting data file. Part 2: Preparing the Data for Mapping Preparing Your Data from the Raw Download File 2.1 Open the.csv file you downloaded from WICID. Column A should contain the codes of the output area origins, B will just contain London as a destination and columns C to L should contain counts of commuters by their mode of travel for each output area. 2.2 We now want to convert this data so that for each output area, we know the most popular method of travel to work. To do this we need the column reference of the method of travel with the highest count for each output area. Assuming that C5 is the first cell with numeric data type the following formula into cell M5: =IF(C5=MAX($C5:$L5),COLUMN(0,0) This formula returns a numeric column reference for the maximum value in the data between cells C5 and L5. The $ symbols fix the range from C to L enabling the formula to be copied across and down to other cells. 2.3 Copy this formula to each cell until cell V5. You should find that each cell contains a value 0 except for T5 which contains 20. Highlight this new row of values from M5 324

10 to V5. Double click the small black square that appears in the bottom right corner of the square and the formulas should be copied all the way down to the last row of data. 2.4 The next empty cell you have should be cell W5. In this cell type the following formula: =MAX(M5:V5) In the same way you copied the last formula down all rows by clicking on the small black square in the corner of the cell, copy this formula to all rows in column W. Column W will now contain a reference to the most popular method of travel to work for all output areas in London. You might want to make a note of the method each number relates to e.g. 13 Home worker, 14 Underground et cetera. 2.5 Open up a new excel spreadsheet and copy and paste the output area reference codes values from column W into columns A and B in the new spreadsheet. Do not include a header row. You should now have values in every row down to Go to Save As and save a copy of the file as Text (Tab delimited) (*.txt) under the name london_commuting. txt (click yes if any pop-ups appear). Adding your Data to PostGIS / PostgreSQL 2.6 You now need to set up a PostGIS enabled PostgreSQL database to store this data in. Go to pgadmin to start Postgres and double-click on the localhost server you set up when you installed the program. You may be prompted for a password if you set up the installation as recommended at the beginning of this exercise, this will be postgres. You will now need to set up a new database on this localhost server. Click Edit > New object > New database. Call your database commuting but make sure you use postgis as a template. Leave the encoding as SQL_ASCII. 2.7 After a moment pgadmin will have created a new database into which you will be able to put both the interaction data you have just prepared and the boundary data downloaded earlier. Click on commuting and then the + symbol. Next + Schemas + Public + Tables - this should reveal the six tables including a table called geometry_columns. If this table exists then your database is spatially enabled. 2.8 We will now copy the london_commuting. txt data into a table called london_commuting in the commuting database. Click the SQL icon in pgadmin to open up an SQL window. In the box type the following: CREATE TABLE london _ commuting ( orig _ label text, method _ travel integer ); COPY london _ commuting FROM C:/london _ commuting.txt ; Now click the green play button to run the query. Note: You will probably need to change the drive and the path to london_commuting.txt to the location it is stored on your computer. If any error messages appear, check that the original london_commuting.txt file only has two columns of data and there are no column headers in this file. If you click the refresh button in pgadmin you will see you new table has appeared. Right clicking on this table you should be able to View data > View all rows to see the table. 325

11 Adding your Boundary Data 2.9 We can now add the boundary data downloaded from UKBORDERS to our new commuting PostGIS database. If you have not already done so, un-zip the file downloaded from UKBORDERS. Start Quantum GIS Once QGIS has started, go to the Plugins > Plugin manager and check the box next to SPIT and click OK. You are now able to click on the SPIT icon in QGIS to bring up the box shown in Figure A.4. Click New and create a new PostGIS connection using the options shown in Figure A Once you have created a connection to your PostGIS database you will need to click the Connect button to set up SPIT for importing the shapefile. After clicking Connect, click Add and navigate to the shapefile containing the boundaries of output areas in London. SPIT will scan the file and then add it to the selection window. Click OK to import the file to your commuting PostGIS database. Note: This may take a few minutes If you click the refresh button in pgadmin you should now see your new boundary data table. This table can be mapped in QGIS, but at the moment your london_commuting data cannot. To map this data you will need to create a new table which combines the two tables together using a common identifier in this case the output area code. The quick way to do this is to input the following into a new SQL window: create table london _ commuting _ mappable WITH OIDS AS select * from london _ commuting, england _ oa _ 2001 where london _ commuting.orig _ label = england _ oa _ 2001.ons _ label; Click the run button. If you refresh the tables list in pgadmin, your new table should appear. Figure A.4. Shapefile to Postgis Import Tool in QGIS 326

12 Note: The WITH OIDS is key to this new table as QGIS will not be able to map a table without an index. Part 3: Mapping your Data 3.1 Now you have set up your data, you are able to produce a map using QGIS. Go to Layer > Add a PostGIS layer. A connection to commuting should have already been set up when you imported the shapefile in the last section. Select this database from the dropdown list and click connect. Click on the london_commuting_mappable layer and then click Add. A plain map of all output areas in London should appear. 3.2 To create a thematic map of your data, rightclick the layer in the Legend window and select Properties. A box similar to the one in Figure A.5 should appear. In the Symbology tab change legend type to Unique value and classification field to Method_travel. Click Classify and the seven unique values relating to the seven types of transport most popular for output areas should appear. Hold down Shift and highlight all seven before changing Outline style in the Style options to No Pen. Click Apply and OK and your thematic map should now be drawn. 3.3 You can now edit your map and legend add additional layers et cetera so that an end product similar to the one shown in Figure A.6 can be produced. Figure A.5. Layer Properties window in QGIS 327

13 Figure A.6. Preferred method of travel by output area in London,

Mapping Census data in QGIS

Mapping Census data in QGIS Mapping Census data in QGIS Contents Contents 1. Introduction...3 1.1. Census data...3 1.2. Boundary data...3 1.3. Mapping software...3 2. Obtain your census data...4 Step 1: Geography...4 Step 2: Topics...5

More information

LearnOSM. PostgreSQL & PostGIS. Installing PostgreSQL and PostGIS. Reviewed

LearnOSM. PostgreSQL & PostGIS. Installing PostgreSQL and PostGIS. Reviewed PostgreSQL & PostGIS Reviewed 2016-09-10 LearnOSM In this chapter we will see how to set up PostgreSQL on Windows and how to create a database in which you can store geographic data. We ll be using the

More information

Downloading 2010 Census Data

Downloading 2010 Census Data Downloading 2010 Census Data These instructions cover downloading the Census Tract polygons and the separate attribute data. After that, the attribute data will need additional formatting in Excel before

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

More information

Getting Started with MapInfo Professional Hands On Session 1D

Getting Started with MapInfo Professional Hands On Session 1D In this session, the following topics will be covered: Open a DBF file Create Points Geocode to 5 digit ZIPCodes Use Query > Select Use the Select Tools Create a Thematic Map The Layout Window MapWorld

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

Converting census data into GIS data

Converting census data into GIS data Converting census data into GIS data For those interested in analyzing Canadian demographics data, census data can be downloaded directly from ODESI or the Canadian Census Analyser. In order to use the

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

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

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

How to Rezone. A method for redistributing census populations to create bespoke geographies

How to Rezone. A method for redistributing census populations to create bespoke geographies How to Rezone A method for redistributing census populations to create bespoke geographies January 2014 Contents Contents... 2 Introduction... 3 Limitations of this method... 4 Extract the zip file...

More information

OS OpenData masterclass 2013 Cartographic Design workshop

OS OpenData masterclass 2013 Cartographic Design workshop OS OpenData masterclass 2013 Cartographic Design workshop 1 Quantum GIS Quantum GIS (QGIS) is a user-friendly Open Source Geographic Information System (GIS,) licensed under the GNU General Public License.

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

ArcGIS Online (AGOL) Quick Start Guide Fall 2018

ArcGIS Online (AGOL) Quick Start Guide Fall 2018 ArcGIS Online (AGOL) Quick Start Guide Fall 2018 ArcGIS Online (AGOL) is a web mapping tool available to UC Merced faculty, students and staff. The Spatial Analysis and Research Center (SpARC) provides

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 #7: Mapping US Census Data

Lab #7: Mapping US Census Data Lab #7: Mapping US Census Data Objectives: Access US Census Data via the Web Download census data in excel format Create new variables based on calculations Create key fields for merging with NYC Planning

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

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

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

Introductory Exercises in Microsoft Access XP

Introductory Exercises in Microsoft Access XP INFORMATION SYSTEMS SERVICES Introductory Exercises in Microsoft Access XP This document contains a series of exercises which give an introduction to the Access relational database program. AUTHOR: Information

More information

Module 8. Use of Double Geography datasets within SASPAC

Module 8. Use of Double Geography datasets within SASPAC Module 8 Use of Double Geography datasets within SASPAC SASPAC Training Double Geography datasets Introduction The standard datasets supplied by the Census Offices are one-dimensional in a geographic

More information

Quantitative Mapping Using Census Data

Quantitative Mapping Using Census Data MAP, DATA & GIS LIBRARY maplib@brocku.ca ArcGIS Pro Census Mapping Quantitative Mapping Using Census Data This tutorial includes all necessary steps to create a thematic map using numeric census tract

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

Joining data from an Excel spreadsheet

Joining data from an Excel spreadsheet Geographic Information for Vector Surveillance Day 3 of a 3 day course with Malaria examples Getting your own data into QGIS Learning objectives be able to join data from an Excel spreadsheet to a shapefile

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

Using the SABINS Data Finder

Using the SABINS Data Finder Using the SABINS Data Finder August 2011 This guide shows users how to use the School Attendance Boundary Information System (SABINS) to access GIS boundary files and data tables for school attendance

More information

Microsoft Access Database How to Import/Link Data

Microsoft Access Database How to Import/Link Data Microsoft Access Database How to Import/Link Data Firstly, I would like to thank you for your interest in this Access database ebook guide; a useful reference guide on how to import/link data into an Access

More information

Step by Step GIS. Section 1

Step by Step GIS. Section 1 Step by Step GIS Section 1 Contact the web page given below for the data required to do the exercises (http://www.pasda.psu.edu/default.asp) Before beginning the tutorials please visit the Preparation

More information

Exercise 1: Introduction to MapInfo

Exercise 1: Introduction to MapInfo Geog 578 Exercise 1: Introduction to MapInfo Page: 1/22 Geog 578: GIS Applications Exercise 1: Introduction to MapInfo Assigned on January 25 th, 2006 Due on February 1 st, 2006 Total Points: 10 0. Convention

More information

Quick Guide to American FactFinder

Quick Guide to American FactFinder Quick Guide to American FactFinder 1. Search Terms... 2 2. Finding Neighborhoods... 6 3. Downloading the Tables 13 4. Interpreting the Numbers... 18 Introduction The American FactFinder is a useful online

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

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

Note: you must explicitly follow these instructions to avoid problems

Note: you must explicitly follow these instructions to avoid problems Exercise 4 Attribute Tables and Census Tract Mapping 30 Points Note: We recommend that you use the Firefox web browser when working with the Census Bureau web site. Objectives: Become familiar with census

More information

Map Library ArcView Version 1 02/20/03 Page 1 of 12. ArcView GIS

Map Library ArcView Version 1 02/20/03 Page 1 of 12. ArcView GIS Map Library ArcView Version 1 02/20/03 Page 1 of 12 1. Introduction 1 ArcView GIS ArcView is the most popular desktop GIS analysis and map presentation software package.. With ArcView GIS you can create

More information

CSV Files & Breeze User Guide Version 1.3

CSV Files & Breeze User Guide Version 1.3 CSV Files & Breeze User Guide Version 1.3 February 2017 TABLE OF CONTENTS INTRODUCTION... 3 CSV FILES & EXCEL WORKSHEETS... 4 Export in CSV File Format... 6 CSV File Uploader Tool... 8 CSV ROLL WIDGET...

More information

Data Visualisation with Google Fusion Tables

Data Visualisation with Google Fusion Tables Data Visualisation with Google Fusion Tables Workshop Exercises Dr Luc Small 12 April 2017 1.5 Data Visualisation with Google Fusion Tables Page 1 of 33 1 Introduction Google Fusion Tables is shaping up

More information

EDINA Workshop: Creating a Campus Map and Displaying it in OpenLayers

EDINA Workshop: Creating a Campus Map and Displaying it in OpenLayers Contents Introduction... 2 What steps are involved?... 3 Before you start... 4 Create your campus map... 5 1. Load the basemap data into ArcMap... 5 2. Set up Symbology and Labels of Layers... 6 Improve

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

User Guide MapRoad 2.3 Install Guide Windows 7

User Guide MapRoad 2.3 Install Guide Windows 7 User Guide MapRoad 2.3 Install Guide Windows 7 Purpose of this Document The purpose of this document is to fully describe the installation of the modules associated with MapRoad 2.3 in a window 7 environment.

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

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.0 NOTICE: Copyright Pitney Bowes 2017. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

Geography 281 Map Making with GIS Project Three: Viewing Data Spatially

Geography 281 Map Making with GIS Project Three: Viewing Data Spatially Geography 281 Map Making with GIS Project Three: Viewing Data Spatially This activity introduces three of the most common thematic maps: Choropleth maps Dot density maps Graduated symbol maps You will

More information

ArcGIS 10.x Basic Exercise GMU Libraries

ArcGIS 10.x Basic Exercise GMU Libraries ArcGIS 10.x Basic Exercise GMU Libraries Goals of this exercise To introduce basic functions available in ArcGIS 10.x to create a simple thematic map You are going to create a thematic map using VA county

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

Lab 7: Tables Operations in ArcMap

Lab 7: Tables Operations in ArcMap Lab 7: Tables Operations in ArcMap What You ll Learn: This Lab provides more practice with tabular data management in ArcMap. In this Lab, we will view, select, re-order, and update tabular data. You should

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

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

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.3 NOTICE: Copyright Pitney Bowes 2019. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

Len Preston Chief, Labor Market Information New Jersey Department of Labor & Workforce Development

Len Preston Chief, Labor Market Information New Jersey Department of Labor & Workforce Development Len Preston Chief, Labor Market Information New Jersey Department of Labor & Workforce Development Cooperative project of the State of New Jersey and the U.S. Bureau of the Census serving data users in

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

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

SAMLab Tip Sheet #5 Creating Graphs

SAMLab Tip Sheet #5 Creating Graphs Creating Graphs The purpose of this tip sheet is to provide a basic demonstration of how to create graphs with Excel. Excel can generate a wide variety of graphs, but we will use only two as primary examples.

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

SilvAssist 3.5 Instruction Manual Instruction Manual for the SilvAssist Toolbar For ArcGIS. Version 3.5

SilvAssist 3.5 Instruction Manual Instruction Manual for the SilvAssist Toolbar For ArcGIS. Version 3.5 Instruction Manual for the SilvAssist Toolbar For ArcGIS Version 3.5 1 2 Contents Introduction... 5 Preparing to Use SilvAssist... 6 Polygon Selection... 6 Plot Allocator... 7 Requirements:... 7 Operation...

More information

IP4 - Running reports

IP4 - Running reports To assist with tracking and monitoring HRIS recruitment and personnel, reports can be run from Discoverer Plus. This guide covers the following process steps: Logging in... 2 What s changed? Changed reference

More information

USING CCCR S AERIAL PHOTOGRAPHY IN YOUR OWN GIS

USING CCCR S AERIAL PHOTOGRAPHY IN YOUR OWN GIS USING CCCR S AERIAL PHOTOGRAPHY IN YOUR OWN GIS Background: In 2006, the Centre for Catchment and Coastal Research purchased 40 cm resolution aerial photography for the whole of Wales. This product was

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

Choropleth Mapping with GIS

Choropleth Mapping with GIS Choropleth Mapping with GIS In this lab you will be making 4 choropleth maps of the data you downloaded and processed last week. You will make your maps in ArcGIS using three different methods of classing

More information

Creating a data file and entering data

Creating a data file and entering data 4 Creating a data file and entering data There are a number of stages in the process of setting up a data file and analysing the data. The flow chart shown on the next page outlines the main steps that

More information

Introduction to GIS software

Introduction to GIS software Introduction to GIS software There are a wide variety of GIS software packages available. Some of these software packages are freely available for you to download and could be used in your classroom. ArcGIS

More information

Using ESRI data in Autodesk ISD Products

Using ESRI data in Autodesk ISD Products GI13-3 Using ESRI data in Autodesk ISD Products 1.5 hr. Class 02-Dec-03 3:30pm - 5:00pm Session Description: We will focus on using data in a variety of ESRI formats within the Autodesk GIS product line,

More information

Practical guidance on mapping and visualisation of crime and social data in QGIS

Practical guidance on mapping and visualisation of crime and social data in QGIS Practical guidance on mapping and visualisation of crime and social data in QGIS Lesson 4: Mapping of aggregated crime data in QGIS This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike

More information

Ryerson University, March Table of Contents. Joining CHASS Data To ArcView Cartographic Files A. Importing An Arc Export File...

Ryerson University, March Table of Contents. Joining CHASS Data To ArcView Cartographic Files A. Importing An Arc Export File... Ryerson University, March 2001 Table of Contents Joining CHASS Data To ArcView Cartographic Files... -1 A. Importing An Arc Export File... -1 B. Opening The Arc/Info Coverage In ArcView... -2 C. Converting

More information

Using ArcGIS 10.x Introductory Guide University of Toronto Mississauga Library Hazel McCallion Academic Learning Centre

Using ArcGIS 10.x Introductory Guide University of Toronto Mississauga Library Hazel McCallion Academic Learning Centre Using ArcGIS 10.x Introductory Guide University of Toronto Mississauga Library Hazel McCallion Academic Learning Centre FURTHER ASSISTANCE If you have questions or need assistance, please contact: Andrew

More information

Note: For more information on creating labels in CDS, watch Volume 22 of the Fast Class Update: Label Creation.

Note: For more information on creating labels in CDS, watch Volume 22 of the Fast Class Update: Label Creation. Information used to create labels the Client Data System (CDS) can be exported out of CDS and used to create labels in Microsoft Word. In Word, you can make changes to the style, size, and color of fonts

More information

GeoLytics. User Guide. Online Demographic Database

GeoLytics. User Guide. Online Demographic Database GeoLytics Online Demographic Database User Guide Introduction 1 Steps to Create a Report and Export Data 1 Creating & Naming a Request 2 Selecting an Area 3 Selecting the Subarea 5 Selecting Counts & Variables

More information

Mapping Tabular Data

Mapping Tabular Data Mapping Tabular Data ArcGIS Desktop 10.1 Instructional Guide Kim Ricker GIS/Data Center Head (713) 348-5691 Jean Niswonger GIS Support Specialist (713) 348-2595 This guide was created by the staff of the

More information

OnCOR Silverlight Viewer Guide

OnCOR Silverlight Viewer Guide Getting Around There are many ways to move around the map! The simplest option is to use your mouse in the map area. If you hold the left button down, then click and drag, you can pan the map to a new

More information

Tutorial 2: Query and Select TRI Spatial Data to Study State-Wide Emissions Quantum GIS

Tutorial 2: Query and Select TRI Spatial Data to Study State-Wide Emissions Quantum GIS Tutorial 2: Query and Select TRI Spatial Data to Study State-Wide Emissions Quantum GIS This tutorial will introduce you to the following: Identifying Attribute Data Sources Toxic Release Inventory (TRI)

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

Working with Mailbox Manager

Working with Mailbox Manager Working with Mailbox Manager A user guide for Mailbox Manager supporting the Message Storage Server component of the Avaya S3400 Message Server Mailbox Manager Version 5.0 February 2003 Copyright 2003

More information

Training courses. Course Overview Details Audience Duration. Applying GIS

Training courses. Course Overview Details Audience Duration. Applying GIS Training courses (Last update: December 2017) Remarks: As part of a course a certificate is issued for each attendee. All software used during the courses is Open Source Software. Contact: allspatial Geospatial

More information

Technical Documentation Version 7.3 Output

Technical Documentation Version 7.3 Output Technical Documentation Version 7.3 Output These documents are copyrighted by the Regents of the University of Colorado. No part of this document may be reproduced, stored in a retrieval system, or transmitted

More information

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016 Slide 1 - Using Tables, Sparklines and Conditional Formatting Using Tables, Sparklines and Conditional Formatting Module 5 Page 1 of 27 Slide 2 - Lesson Objectives Lesson Objectives Explore the find and

More information

Ctrack Online User Guide

Ctrack Online User Guide Fleetstar Online A Guide to Winter Maintenance Reporting v1.1 Ctrack Online User Guide Title: Ctrack Online Quickstart Guide Date: 18/07/2013 Version: 1.0 Table of Contents 1. Ctrack Online Introduction...

More information

Mobility Fund Phase II (MF-II) Challenge Process: USAC Challenge Portal User Guide

Mobility Fund Phase II (MF-II) Challenge Process: USAC Challenge Portal User Guide Mobility Fund Phase II (MF-II) Challenge Process: TABLE OF CONTENTS General Information and System Requirements... 4 Portal Home Page... 5 Downloading Data... 5 Steps to Download Data... 5 Baseline Data

More information

Building Vector Layers

Building Vector Layers Building Vector Layers in QGIS Introduction: Spatially referenced data can be separated into two categories, raster and vector data. This week, we focus on the building of vector features. Vector shapefiles

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

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

HO-1: BASIC SPREADSHEET SKILLS - CREATING A WORKBOOK

HO-1: BASIC SPREADSHEET SKILLS - CREATING A WORKBOOK HO-1: BASIC SPREADSHEET SKILLS - CREATING A WORKBOOK After completing this exercise you will be able to: Create a new workbook and add and rename worksheets. Enter data (text labels, numerical values and

More information

HERA and FEDRA Software User Notes: General guide for all users Version 7 Jan 2009

HERA and FEDRA Software User Notes: General guide for all users Version 7 Jan 2009 HERA and FEDRA Software User Notes: General guide for all users Version 7 Jan 2009 1 Educational Competencies Consortium Ltd is a not-for-profit, member-driven organisation, offering a unique mix of high

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

Getting Started with ArcGIS Background and Introduction

Getting Started with ArcGIS Background and Introduction Getting Started with ArcGIS Background and Introduction BACKGROUND ON ArcGIS SOFTWARE ArcGIS is a set of tools for collecting, storing, managing, analyzing, and representing geographic information. It

More information

Working with 2000 Census Data in ArcGIS: Using the US Census Bureau Web Site for SF1 and SF3 Data

Working with 2000 Census Data in ArcGIS: Using the US Census Bureau Web Site for SF1 and SF3 Data Tufts University GIS Tutorial Working with 2000 Census Data in ArcGIS: Using the US Census Bureau Web Site for SF1 and SF3 Data Revised October 14, 2010 Note: we highly recommend Mozilla Firefox for this

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a List The following instructions cover how to create a list report in IBM Cognos Analytics. A list is a report type in Cognos that displays a series of data columns listing

More information

Help Guide Version 1.2.1

Help Guide Version 1.2.1 Help Guide Version 1.2.1 Jo CONTENTS INTRODUCTION TO VISOGRAPHY TRACC... 5 Minimum / Recommended Specifications... 5 City/County Wide... 5 Region Wide... 5 Nationwide... 5 Potential Uses for TRACC... 6

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Overview of ArcGIS Online Applications. Champaign County

Overview of ArcGIS Online Applications. Champaign County Overview of ArcGIS Online Applications Champaign County Champaign County GIS Consortium Updated: April 2017 Table of Contents ArcGIS Online Application Overview... 3 Map Interface Symbology and Terminology...

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

An Introduction to Geographic Information Systems (GIS) using ArcGIS 9.2

An Introduction to Geographic Information Systems (GIS) using ArcGIS 9.2 An Introduction to Geographic Information Systems (GIS) using ArcGIS 9.2 by Marcel Fortin, GIS and Map Librarian, University of Toronto Libraries, 2009 gis.maps@utoronto.ca http://www.library.utoronto.ca/maplib/

More information

Instructions for querying the NETLAKE site metadatabase

Instructions for querying the NETLAKE site metadatabase Instructions for querying the NETLAKE site metadatabase January 2016 1 Contents 1. Background... 3 2. Accessing the metadatabase:... 4 3. Querying in Adminer (the online metadatabase)... 5 4. Querying

More information

Introduction to QGIS: Student Workbook

Introduction to QGIS: Student Workbook 2016 Introduction to QGIS: Student Workbook Created by: MARK DE BLOIS, CEO / FOUNDER, UPANDE LIMITED WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR INTERNATIONAL DEVELOPMENT (DFID) Module 3:

More information

Frequently Asked Questions: SmartForms and Reader DC

Frequently Asked Questions: SmartForms and Reader DC Frequently Asked Questions: SmartForms and Reader DC Initial Check Browsers - Google Chrome - Other browsers Form functions - List of additional buttons and their function Field functions - Choosing a

More information

SelectSurveyASP Advanced User Manual

SelectSurveyASP Advanced User Manual SelectSurveyASP Advanced User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

USA Census Tutorial Downloading & Mapping American Factfinder Census Data for use in ArcMap

USA Census Tutorial Downloading & Mapping American Factfinder Census Data for use in ArcMap USA Census Tutorial Downloading & Mapping American Factfinder Census Data for use in ArcMap Written by Barbara Parmenter, revised by Carolyn Talmadge on September 12, 2017 for ArcMap 10.5.1 Tufts Data

More information

Training Tracker 6. PC Edition. Copyright Computer Directions, LLC

Training Tracker 6. PC Edition. Copyright Computer Directions, LLC Training Tracker 6 PC Edition Copyright 2014-2016 Computer Directions, LLC Contents What is Training Tracker?... 3 Getting Started... 4 The People Tab... 4 Overview... 4 Adding People... 5 Editing People...

More information

Project 2 CIVL 3161 Advanced Editing

Project 2 CIVL 3161 Advanced Editing Project 2 CIVL 3161 Advanced Editing Introduction This project will involve more advanced editing/manipulation of data within ArcGIS. You will use the map that you create in this project as a starting

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

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