GEOG 487 Lesson 7: Step- by- Step Activity

Size: px
Start display at page:

Download "GEOG 487 Lesson 7: Step- by- Step Activity"

Transcription

1 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 the Data for Use in ArcMap a. Unzip the Lesson 7 data in your L7 folder. Since all of the data is included in this zip file, you do not need to worry about how you unzip the data. b. Familiarize yourself with the contents of the data included with this zip file. Refer to the Lesson Data section for additional information. 2. Organize the Map Document and Familiarize Yourself with the Study Area Since all of the datasets used in this lesson have the same projection, we do not have to be concerned with the order in which we load the data. a. Start ArcMap and make sure the Spatial Analyst extension is on. Create a new map and save it in your L7 folder. b. Add the "Study_Boundary," "Management_Units," and "Roads07" feature classes from the "L7Data.mdb" geodatabase located in your L7Data folder. c. Change the symbology of the layers as follows: Study_Boundary hollow red line; Management_Units unique colors by Use ; Roads07 black line. d. Rearrange the layers so the study area boundary is on top and the roads are on the bottom. e. Explore the attribute tables of the three feature classes. f. Update your Environment Settings: workspace to your L7 folder, output coordinates, mask, and extent to "Same as Layer Study_Boundary," cell size to 100 meters, and uncheck the Build Pyramids box. g. Add the "Imagery with Labels" ArcGIS Basemap to your map and drag it below the boundaries. Notice the location of the study boundary in relation to the country of Cameroon and the Congo Basin. h. Save your map. You may want to turn off the basemap to improve map loading speed for the rest of the lesson. How many of the management units are used for logging? What about conservation? Using the "Imagery with Labels" layer, can you see the approximate extent of the rainforests located in the Congo Basin? What kind of details can you see in the forest if you zoom in very close? GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 1 of 27

2 Part II: Create Habitat Quality and Forest Patch Datasets In Part II, we will use the roads dataset to create raster data layers of habitat quality and forest patches. In Part III, we will generate statistics about the size, shape, and habitat quality of each forest patch. We will use the following coded values: 1- Low Quality Habitat (Road Clearings) 2- Medium Quality Habitat (Forest, Edge Habitat) 3- High Quality Habitat (Forest, Interior Habitat) 1. Create Grid of Low Quality Habitat (Road Clearings) a. Open the "Roads07" attribute table and add a new short integer field named "HabitatCode." b. Use the field calculator to assign all of the roads a HabitatCode of "1." Clear the selected records. When you convert a feature layer to a raster, you have to choose a field in the feature layer from which to base the grid cell values on. You often need to create a new dummy field and assign a value that is consistent for all of the records you want to convert (like we did above). It is also important to note that if there are any selected records in the vector layer, only those records will be converted to a raster layer. Therefore, be sure to clear any selected features before performing the conversion. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 2 of 27

3 The data type of the field you choose is very important. For example, if you choose a numerical field that contains decimal values, the resultant grid will not have an attribute table. However, if you choose an integer field, the resultant raster will have an attribute table. If you choose a text field, ArcGIS will automatically assign each unique text value an integer code in a new field named "VALUE." The new raster layer will be created based on all defined Spatial Analyst environment settings. Always check these settings before converting features to a raster to avoid potentially undesirable results. c. Convert the roads feature class to a raster named "RoadsGrid" using the settings below: ArcToolbox > Conversion Tools > To Raster > Feature to Raster. d. Compare the "RoadsGrid" to the road centerlines. Make sure you zoom to several different scales. Open the "RoadsGrid" attribute table to view the results. It is important to note that although the extent setting is utilized by Feature to Raster, the mask setting is ignored. Although you will not notice this with the "RoadsGrid" layer, you will see the effects of this when you create a buffered grid later in this lesson. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 3 of 27

4 Make sure you have the correct answer before moving on to the next step. The "RoadsGrid" raster should have the following information. If your data does not match this, go back and redo the previous step. 2. Create Edge Effects Grid Remember from the Background Information section that edge effects can occur up to 2 km from roads. We will consider all areas 2 km from roads as "edge habitat" and areas farther than 2 km from roads as "interior habitat." To do this, we need to create a buffer of the road centerlines. a. Create a 2 km buffer of the road centerlines (Main Toolbar > Geoprocessing > Buffer) using the settings below. Save the file inside the Lesson 7 geodatabase. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 4 of 27

5 b. Compare the buffer to the road centerlines. You may want to use the measuring tool to double check your buffer is the correct width. c. Add a new short integer field named "HabitatCode" to the "Roads07_Buffer" feature class and assign it a value of "2" using the field calculator. The value of "2" corresponds to medium quality habitat (forested areas within 2 km of a road). d. Convert the road buffer to a grid named "EdgeGrid" based on the "HabitatCode" field. Be sure to pay attention to the cell size. Note: this may take a while to run. e. Compare the "EdgeGrid" raster to the "Roads07" and "Roads07_Buffer" datasets. Notice how the conversion tool did not follow the mask setting, as the raster cells with values extrude beyond the study area boundary. It may be easier to see the effect if you assign values of NoData in the EdgeGrid raster a color as we did in previous lessons. Make sure you have the correct answer before moving on to the next step. The "EdgeGrid" raster should have the following information. If your data does not match this, go back and redo the previous step. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 5 of 27

6 3. Create Interior Forests Grid a. Reclassify the "EdgeGrid" using the settings below. Name the output grid "InteriorGrid." b. Compare the "InteriorGrid" raster layer to the "EdgeGrid" and "RoadsGrid" layers. Notice how we were able to "flip" the areas with NoData. It is easier to see the effect if you turn off all of the layers except the Roads, InteriorGrid, and Study Boundary. It s important that you choose appropriate mask and extent settings when using this technique. Did the Reclassify Tool honor the mask and extent settings? Hint: Compare the InteriorGrid and EdgeGrid rasters along the study area boundary. c. As you have noticed grid cells with real values, 3 in your InteriorGrid, extend outside the Study_Boundary. The Reclassify command is one command that seems to ignore Mask and Processing Extent settings. So, we need to make adjustments here to reduce the area to our Study_Boundary. There are several way to accomplish this, one that I prefer GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 6 of 27

7 is to use the Raster Calculator command in the Map Algebra Toolbox. Simply multiply by 1. This has no impact on any values within your area of interest while restricting real values to the area specified by your Mask and Processing Extent settings returning. Be sure to double check your Environment settings to match those that we have been using all along. Name your output grid InteriorGrid2. Make sure you have the correct answer before moving on to the next step. The "Interior2" grid should have the following information. If your data does not match this, go back and redo the previous step. 4. Create Final Habitat Quality Grid In steps 1, 2, and 3, we created three individual grids, one for each level of habitat quality. To continue the analysis, we need a way to merge all of the data sets into one grid. The Mosaic to New Raster tool in ArcToolbox allows you to mosaic multiple raster data layers together by stacking them on top of one another. The values in the output raster will be determined based on the order the files are specified during the mosaic. Cells will first be assigned according to the cell values in the first input raster; all remaining null values will be filled in with the middle input raster, and so on. We want the roads to be on top of the stack, the edge habitat in the middle, and the forests on the bottom. a. Go to ArcToolbox > Data Management Tools > Raster > Raster Dataset > Mosaic to New Raster and enter the settings as shown on the next page. Name the new grid "HabMosaic." When adding the input rasters, pay attention to the order in which you add them. Along with the output location and the raster dataset name, you will need to assign a cell size and number of bands. The number of bands refers to a color map. Since we are not dealing with multiple band data, enter "1" to identify the new raster dataset as a single band layer. As mentioned above, we want the raster to be created based on a hierarchy from first to last. Therefore, we need to set the Mosaic Operator to "FIRST" so that the analysis runs as intended. You can leave the Mosiac Colormap Mode setting to "FIRST" since we are dealing with single band data. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 7 of 27

8 This tool does not honor the Output extent environment settings. If you want a specific extent for your output raster, consider using the Clip tool. You can either clip the input rasters prior to using this tool, or clip the output of this tool. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 8 of 27

9 Make sure you have the correct answer before moving on to the next step. The "HabMosaic" raster should have the following information. If your data does not match this, go back and redo the previous step. What value was assigned to areas with roads, since they have data in both the "RoadsGrid" and "EdgeGrid" rasters? Which habitat type (roads, edge, or interior) covers the majority of the study area? How can you calculate the area of each habitat type? b. Notice that the some edges of the "HabMosaic" grid fall outside of the study boundary. As mentioned earlier, this is because the Mosaic to New Raster tool does not utilize the extent environment settings. Therefore, we need to "clip" the data to the extent of our study boundary. To do this, we will use the Raster Calculator. Open the Raster Calculator (ArcToolbox > Spatial Analyst Tools > Map Algebra > Raster Calculator), click the "HabMosaic" grid to enter it into the expression window, set the output raster as "HabitatGrid" and click OK to run the expression. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 9 of 27

10 c. Compare the "HabitatGrid" to the "HabMosaic" grids to see how the Raster Calculator "clipped" the data. Hint: Zoom in to the study area boundary, The Raster Calculator utilizes all raster environment settings, so it is highly useful when working with raster data. As displayed above, simply selecting a raster layer and running the Raster Calculator will generate a new raster layer based on the current environmental settings. Try changing these settings to see the differences when running the Raster Calculator on a particular raster layer. Make sure you have the correct answer before moving on to the next step. The "HabitatGrid" raster should have the following information. If your data does not match this, go back and redo the previous step. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 10 of 27

11 5. Create Grid of Forested Areas We now have one grid with values showing the range of habitat quality within the study area. The next step is to create a grid of forested areas, which we need to create the forest fragments. We will use the "RoadsGrid" raster we created in Part II Step 1 to create a new grid representing forested areas (cells that are NOT roads). a. Reclassify "RoadsGrid" using the settings below: b. Compare the "ForestGrid" raster to the "RoadsGrid" raster. Make sure you have the correct answer before moving on to the next step. The "ForestGrid" raster should have the following information. If your data does not match this, go back and redo the previous step. You may need to adjust for the Mask and Processing Extent here as well. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 11 of 27

12 6. Create Grid of Individual Forest Patches a. Examine the "ForestGrid" attribute table. Notice there is not a way to distinguish groups of contiguous cells from one another. We need to be able to do this to determine which cells belong to the same forest patch. b. To accomplish this, we will use the RegionGroup tool. RegionGroup is an operation that takes adjacent cells with the same value and assigns them a unique value. So, in essence, it creates a grid with groups of cells similar to polygons in a shapefile. This is an important operation, since it enables further analysis with expressions and operations that require grouped regions, such as calculating the area and width of forest patches. c. Go to ArcToolbox > Spatial Analyst Tools > Generalization > Region Group, select "ForestGrid" as the input raster, name the output raster "ForestPatches", leave the number of neighbors to use as "FOUR", the zone grouping method as "WITHIN", uncheck the "Add link field to output", leave the excluded value setting, and click OK. d. Compare the ForestPatches attribute table to the ForestGrid attribute table. Notice how the attribute table now has multiple rows, one for each forest patch. The "Rowid" and "VALUE" fields both contain unique ID numbers for each contiguous forest patch. The "COUNT" field shows the number of cells in each forest patch. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 12 of 27

13 Make sure you have the correct answer before moving on to the next step. The "ForestPatches" grid should have the following information. If your data does not match this, go back and redo the previous step. e. The "VALUE" field is very important, since it uniquely identifies each forest patch. However, the default name assigned by the computer is not very meaningful. It would be very easy to forget what it means later on. It s also easy to confuse the "VALUE" and "Rowid" field, since they contain similar numbers. f. To prevent these issues, let s create a more meaningful attribute to keep track of the forest patches. Add a new short integer field named "ForestID" to the "ForestPatches" attribute table. Populate it with the numbers in the "VALUE" field. g. Change the symbology to "unique values" based on the "ForestID" field. Notice how groups of contiguous cells are now considered one unit. Also notice how the default colors assigned by ArcMap are not very meaningful. We will address this later in the lesson. h. The "COUNT" field is also very important, since it tells us how many cells are within each forest patch. As we saw in Lesson 5, we can use the number of cells and size of each cell to calculate area values. i. Add a new float field to the "ForestPatches" attribute table named "AREA_SQM." Use the field calculator to populate the field. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 13 of 27

14 Why did we use the number "100" to calculate the area? Make sure you have the correct answer before moving on to the next step. The "ForestPatches" grid should have the following information. If your data does not match this, go back and redo the previous step. How many individual forest patches are there? Which forest patch is the largest? Which forest patch is the smallest? Why do you think there are so many patches with an area of exactly 10,000 sq m? GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 14 of 27

15 Part III: Calculate Spatial Statistics of Forest Patches In Part III, we will use two Spatial Analyst tools to bring together the raster layers we created in Part I (habitat quality) and Part II (forest patches). Zonal Geometry calculates several geometry measures, such as area and thickness, for zones in a raster. We will use it to generate a table of statistics about the size and shape of each forest patch. We will also use the Zonal Histogram Tool to tabulate the number of cells of each habitat type within each forest patch and management unit. 1. Calculate the Geometry of Each Forest Patch a. Go to ArcToolbox > Spatial Analyst Tools > Zonal > Zonal Geometry as Table. Use the settings shown below. Name the table "PatchGeometry.dbf" and save it in your L7 folder. Make sure to include the.dbf file extension. Make sure you have the correct answer before moving on to the next step. The "PatchGeometry" table should have the following information. If your data does not match this, go back and redo the previous step. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 15 of 27

16 Which field in the "PatchGeometry" table is the equivalent to the "ForestID" field? What are the units of the fields "AREA," "PERIMETER," and "THICKNESS"? What do the values in the fields "XCENTROID," "YCENTROID," "MAJORAXIS," "MINORAXIS", and "ORIENTATION" mean? b. Add a new short integer field named "ForestID" and populate it with the values in the "VALUE" field using the field calculator. This step will make it easier to compare the Patch Geometry table with other outputs later in the lesson. c. Add three new float fields named TotAreaSQM, PerimeterM, and ThicknessM. Calculate them to equal the values in AREA, PERIMETER, and THICKNESS, respectively. This will help us remember the units of the calculations later on. 2. Calculate Habitat Statistics by Forest Patch The Zonal Histogram tool will create a summary table that contains one row for each unique value in the "Value raster" and one column for each unique value in the "Zone dataset." The tool will calculate the total number of cells for each combination of unique row and column. The tool can also create a graph based on the output table, which we are going to skip. a. Open the Zonal Histogram tool (ArcToolbox > Spatial Analyst Tools > Zonal > Zonal Histogram). Use the settings below and click "OK." Make sure to add the.dbf extension. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 16 of 27

17 b. Open the "Habitat_by_Patch" table. The "LABEL" field contain values equivalent to the "Rowid" field within "ForestPatches." The "VALUE_2" field contains the number of cells of edge habitat for each forest patch. The "VALUE_3" field contains the number of cells of interior habitat for each forest patch (Remember that we used codes of 1, 2, and 3 to represent the different habitat types throughout the lesson). c. These field names are not very intuitive, and we may forget what they mean later on. Let s add a few new meaningful fields to address this potential problem. d. Add a new short integer field called "ForestID" to the "Habitat_by_Patch" table. Use the field calculator to populate it with the values in the LABEL field. e. Add two new float fields named "Edge_SQM" and "Int_SQM." Calculate the fields as shown below (# of cells * cell length * cell width): f. Remember from Lesson 4 that it is a lot easier to compare multiple area values if you use percent of total area instead of actual area values. Add two new short integer fields named "PctTotEdge" and "PctTotInt." Calculate the fields as shown below. Notice the 100 in the equation is used to create a percent value and is not related to the 100 value we used in step e, which corresponds to the length and width of the raster cells. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 17 of 27

18 Make sure you have the correct answer before moving on to the next step. The "Habitat_by_Patch" table should have the following information. If your data does not match this, go back and redo the previous step. 3. Calculate Habitat Statistics by Management Unit a. Use the Zonal Histogram Tool to determine the amount of each habitat type by management unit as shown in the example below: Don t forget the file extension. What do numbers in the "LABEL" field of the "Habitat_by_MU" mean? Which management unit "use" has the most roads? GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 18 of 27

19 b. Add a new text field (length 20) named Habitat. Use the field calculator and the information below to update the new field. 1 - Low Quality Habitat (Road Clearings) 2 - Medium Quality Habitat (Forest, Edge Habitat) 3 - High Quality Habitat (Forest, Interior Habitat) c. Add two new float fields named LogSQM and ConsSQM. Add two new short integer fields named PctTotLog and PctTotCons. Calculate them using the technique we used in Step 2 e and f. Make sure you have the correct answer before moving on to the next step. The "Habitat_by_MU" table should have the following information. If your data does not match this, go back and redo the previous step. 4. Join Forest Patches to Geometry Table a. Since we no longer need the forest patches to be in raster format, let s convert them to a shapefile so they are easier to use. b. Convert the "ForestPatches" grid to a polygon shapefile using the settings below: ArcToolbox > Conversion Tools > From Raster > Raster to Polygon. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 19 of 27

20 c. Open the attribute table of the new shapefile. Notice how the "ForestID" values match those in the GRIDCODE field. d. Add a new short integer field named "FORESTID" and populate it with the values in the "GRIDCODE" field. Make sure you have the correct answer before moving on to the next step. The "forestpatchpoly" shapefile should have the following information. If your data does not match this, go back and redo the previous step. Note that this table has been sorted based on "ForestID". GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 20 of 27

21 e. Join the "PatchGeometry" and "Habitat_by_Patch" tables to the "forestpatchpoly" shapefile using the link fields shown below. f. Open the attribute table to make sure the joins worked properly. Notice how it is hard to view the attributes we are most interested in since there are so many fields. g. Right click on the "forestpatchpoly " shapefile > Properties > Fields, and click the "Turn all fields off" icon on the top left side. Add the check boxes back to the eight fields listed below and click "OK." ForestID TotAreaSQM PerimeterM ThicknessM Edge_SQM Int_SQM PctTotEdge PctTotInt h. Open the attribute table. Notice how it is much easier to interpret the results now. i. To make the joins and table design permanent, export the "forestpatchpoly" to a new shapefile in your Lesson 7 folder named Final_Forest_Patches.shp. j. Add the new shapefile to your map when prompted. Examine the attribute table. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 21 of 27

22 5. Calculate the Edge to Area Ratio of each Forest Patch a. Calculate the edge to area ratio for each for patch. Add a new double field named "EdgetoArea." Calculate it as shown below. Note: we are going to multiply the result by "100" to make the values easier to compare. Why is there such a large range of values for the edge to area ratio results? How would the results of the analysis change if we used a larger or smaller cell size? Make sure you have the correct answer before moving on to the next step. The "Final_Forest_Patches" attribute table should have the following information. If your data does not match this, go back and redo the previous step. Notice how the default outputs from many of the Spatial Analyst tools are not very easy to understand. It s worth the time to create more intuitive fields, units, and names while you are doing the analysis. That way you can easily interpret your results later on and share them with others in a meaningful format. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 22 of 27

23 Part IV: Share Your Results In Part IV, we will finalize our map in ArcGIS Desktop, then share it as a feature service and web map in ArcGIS Online. As a final step, you will combine this map with the output from the Advanced Activity into a web application. 1. Prepare Your Map to Publish in ArcGIS Online a. When you publish your map to ArcGIS Online, it preserves many of the features such as the extent and visible datasets. Let s begin by removing all of the data we do not want to include on our final map. Remove the base map, all of the data sets, and all of the tables (you may need to switch to the List by Source view in the Table of Contents) from your map except the following: Final_Forest_Patches, Study_Boundary, Roads07, and Management_Units. Save your map. b. Remove the underscores from the file names in the Table of Contents. c. Change the symbology of the Final Forest Patches to Quantities > Graduated Colors based on the PctTotEdge field. Select a color scheme and number of classes you think best represent the message you want to convey about the results. You may want to consult the Color Brewer website we covered in Lesson 1 for tips. d. Update the labels in the Table of Contents so the numbers in the Final Forest Patches make sense to your viewers. (What are the units? What s being shown?) e. Change the symbology of the management units to hollow outlines with a unique color for each Use. f. Review your map. Ask yourself the following questions: 1) What are the main messages I am trying to convey with my map? (Remember, you want to show the relationship between logging and forest health.) 2) Does my map design communicate these messages clearly? 3) Will someone unfamiliar with my analysis be able to use my map to make a decision? Make any changes you think are necessary and save your map. 2. Share Your Results as a Map Service on ArcGIS Online a. Go to File > Sign In. Log on to your account. b. Go to File > Share As > Service > Publish a service. Make sure the connection says My Hosted Services (Penn State Online Geospatial Education). You need to be logged in to see this option (File > Sign In). c. Name the service YourFirstName_LastName_L7. Make sure there are no spaces in the name. d. Keep all of the defaults in the Parameters, Tiled Mapping, Caching, and Advanced Settings sections. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 23 of 27

24 e. Under Capabilities, make sure only the Feature Access has a check mark. f. Under Item Description, add a meaningful summary, tags (GEOG487 and your name) and a description. g. Under Access and Use type For educational use only. h. Under Credits type Penn State, Geography 487 Lesson 7, and the date). i. On the Sharing section, check the box next to GEOG487 Environmental Applications of GIS Spring Please do NOT share with the public or the rest of Penn State s programs. j. Click the Analyze button in the top right corner. If there are any errors, correct them, then save your map. Click Analyze again. k. Click the Preview button in the top right corner. Make sure you like how your map service looks. Alter the symbology as needed. Save your map. l. Click the Publish button in the top right corner. 3. Create an ArcGIS Online Web Map a. Log on to arcgis.com > My Content. Make sure your map service shows up in your account. b. Double click on the Feature Service Name. Click Open > Add layer to new map with full editing control. c. Explore the map. Make sure the legend makes sense to someone unfamiliar with your project and the edits you made to layer names in ArcGIS Desktop were applied. Make changes as necessary. d. Click Save. Name the map YourFirstName_LastName_Lesson7. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 24 of 27

25 e. Share your map with the class as shown below (the group name will show the current semester as well). Notice the short URL listed in the Link to this map. ArcGIS online creates a shorted URL that redirects to the actual (and very long) URL of your map or application. It is easier to share the shortened URL on social media and through . To access the short URL, open the map in the ArcGIS.com map viewer > Share. Notice that this is not the same as the Share button on the Details page. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 25 of 27

26 f. Save your map again. Go to My Content. Click on the small arrow next to the name of your map > View item details. Edit the information on the page that opens as follows: a. Summary: One sentence about what the map shows. b. Description: 3-4 sentences describing the main trends in the results. For example: Where are the best habitat areas located (conservation of logging management units)? What is the overall habitat health like in the study area? c. Access and Use Constraints: Type For educational use only. d. Tags: GEOG487 and your name. e. Credits: Penn State, Geography 487 Lesson 7, date, and the name of any classmates maps you used as a reference while creating your own. f. Save your changes. Your map and feature services are now available to view in ArcGIS Desktop and ArcGIS.com. You can test this is ArcMap by going to File > Add Data > Add Data from ArcGIS Online > My Groups (or My Data). How do you think it could be useful in your current or future job to share your analysis results in this manner? Can you think of any potential downfalls? GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 26 of 27

27 That s it for the required portion of the Lesson 7 Step- by- Step Activity. Please consult the Lesson Checklist for instructions on what to do next. Try one or more of the optional activities listed below. Explore the Global Forest Watch Interactive Mapping Website Many of the data sets we will use in the lesson were originally created by Global Forest Watch. Explore their website at Explore the USGS Global Visualization Viewer website Landsat satellite images were used to digitize the roads data we used in this lesson. You can read more about Landsat data on NASA s website: As of October 2008, Landsat data is available for free to the public. It can be viewed and downloaded from the USGS Global Visualization Viewer website at: Note: Try This Activities are voluntary and are not graded, though I encourage you to complete the activity and share comments about your experience on Piazza in the folder lesson7 with the tag #Try_This. GEOG 487 Lesson 7: Step- by- Step Activity; Author: Rachel Kornak, GISP. Updated 6/26/2017. Page 27 of 27

GEOG 487 Lesson 4: Step-by-Step Activity

GEOG 487 Lesson 4: Step-by-Step Activity GEOG 487 Lesson 4: Step-by-Step Activity Part I: Visually Explore Trends In Part I, we will explore several tools and technique to make it easier to visually interpret patterns in your data using ArcGIS.

More information

GEOG 487 Lesson 8: Step-by-Step Activity

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

More information

GEOG 487 Lesson 2: Step-by-Step Activity

GEOG 487 Lesson 2: Step-by-Step Activity GEOG 487 Lesson 2: Step-by-Step Activity In Lesson 2, we are going to create a website that contains interactive maps with datasets related to our project scenario described in the Introduction. We will

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

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

Module 7 Raster operations

Module 7 Raster operations Introduction Geo-Information Science Practical Manual Module 7 Raster operations 7. INTRODUCTION 7-1 LOCAL OPERATIONS 7-2 Mathematical functions and operators 7-5 Raster overlay 7-7 FOCAL OPERATIONS 7-8

More information

GEOG 487 Lesson 2: Step-by-Step Activity

GEOG 487 Lesson 2: Step-by-Step Activity GEOG 487 Lesson 2: Step-by-Step Activity In Lesson 2, we are going to create a website that contains interactive maps with datasets related to our project scenario described in the Introduction. We will

More information

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4

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

More information

Basics of Using LiDAR Data

Basics of Using LiDAR Data Conservation Applications of LiDAR Basics of Using LiDAR Data Exercise #2: Raster Processing 2013 Joel Nelson, University of Minnesota Department of Soil, Water, and Climate This exercise was developed

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

Using GIS to Site Minimal Excavation Helicopter Landings

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

More information

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

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

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

NV CCS USER S GUIDE V1.1 ADDENDUM

NV CCS USER S GUIDE V1.1 ADDENDUM NV CCS USER S GUIDE V1.1 ADDENDUM PAGE 1 FOR CREDIT PROJECTS THAT PROPOSE TO MODIFY CONIFER COVER Released 5/19/2016 This addendum provides instructions for evaluating credit projects that propose to treat

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

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

Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools

Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools Prepared by Venkatesh Merwade School of Civil Engineering, Purdue University vmerwade@purdue.edu January 2018 Objective The

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

How to Create a Tile Package

How to Create a Tile Package United States Department of Agriculture Digital Mobile Sketch Mapping (DMSM) How to Create a Tile Package (TPK) Forest Service Introduction A tile package (.tpk) allows you to use a set of packaged tiles

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

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 Fundamentals: Supplementary Lessons with ArcGIS Pro

GIS Fundamentals: Supplementary Lessons with ArcGIS Pro Station Analysis (parts 1 & 2) What You ll Learn: - Practice various skills using ArcMap. - Combining parcels, land use, impervious surface, and elevation data to calculate suitabilities for various uses

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

RASTER ANALYSIS GIS Analysis Winter 2016

RASTER ANALYSIS GIS Analysis Winter 2016 RASTER ANALYSIS GIS Analysis Winter 2016 Raster Data The Basics Raster Data Format Matrix of cells (pixels) organized into rows and columns (grid); each cell contains a value representing information.

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 Videos that show how to copy/paste data

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

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

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

ii. From the Tools menu choose Multi-Extract

ii. From the Tools menu choose Multi-Extract Created By: Grant J. Firl Advisors: Paul Evangelista, Jim Graham Date: November 2010 Software: ArcGIS v9.2, TUGZip v3.5 Lesson 8: Mosaicking and Clipping Landsat Data The purpose of this tutorial is to

More information

Spatial Analysis with Raster Datasets

Spatial Analysis with Raster Datasets Spatial Analysis with Raster Datasets Francisco Olivera, Ph.D., P.E. Srikanth Koka Lauren Walker Aishwarya Vijaykumar Keri Clary Department of Civil Engineering April 21, 2014 Contents Brief Overview of

More information

GIS Virtual Workshop: Buffering

GIS Virtual Workshop: Buffering This workshop will teach the different methods of buffering data. They will include: Basic buffering of data Merging buffering zones Clipping the buffer Concentric rings around the object You will find

More information

Field-Scale Watershed Analysis

Field-Scale Watershed Analysis Conservation Applications of LiDAR Field-Scale Watershed Analysis A Supplemental Exercise for the Hydrologic Applications Module Andy Jenks, University of Minnesota Department of Forest Resources 2013

More information

RASTER ANALYSIS GIS Analysis Fall 2013

RASTER ANALYSIS GIS Analysis Fall 2013 RASTER ANALYSIS GIS Analysis Fall 2013 Raster Data The Basics Raster Data Format Matrix of cells (pixels) organized into rows and columns (grid); each cell contains a value representing information. What

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

Lab 10: Raster Analyses

Lab 10: Raster Analyses Lab 10: Raster Analyses What You ll Learn: Spatial analysis and modeling with raster data. You will estimate the access costs for all points on a landscape, based on slope and distance to roads. You ll

More information

Part 6b: The effect of scale on raster calculations mean local relief and slope

Part 6b: The effect of scale on raster calculations mean local relief and slope Part 6b: The effect of scale on raster calculations mean local relief and slope Due: Be done with this section by class on Monday 10 Oct. Tasks: Calculate slope for three rasters and produce a decent looking

More information

Creating a reference map

Creating a reference map Chapter 1 Creating a reference map Reference maps are basic, traditional maps. Their purpose is to illustrate geographic boundaries for cities, counties, and other areas. Reference maps have no underlying

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 2008 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Select the Parks within Forest Acres

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

More information

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

STUDENT PAGES GIS Tutorial Treasure in the Treasure State

STUDENT PAGES GIS Tutorial Treasure in the Treasure State STUDENT PAGES GIS Tutorial Treasure in the Treasure State Copyright 2015 Bear Trust International GIS Tutorial 1 Exercise 1: Make a Hand Drawn Map of the School Yard and Playground Your teacher will provide

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

Geospatial Day II Introduction to ArcGIS Editor for Open Street Map

Geospatial Day II Introduction to ArcGIS Editor for Open Street Map Geospatial Day II Introduction to ArcGIS Editor for Open Street Map Geospatial Operations Support Team (GOST) Katie McWilliams kmcwilliams@worldbankgroup.org GOST@worldbank.org 0 Using OSM for Network

More information

Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones

Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones Created by Patrick Florance. Revised on 10/22/18 for 10.6.1 OVERVIEW... 1 SETTING UP... 1 ENABLING THE SPATIAL ANALYST

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

Raster Data. James Frew ESM 263 Winter

Raster Data. James Frew ESM 263 Winter Raster Data 1 Vector Data Review discrete objects geometry = points by themselves connected lines closed polygons attributes linked to feature ID explicit location every point has coordinates 2 Fields

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

MODULE 1 BASIC LIDAR TECHNIQUES

MODULE 1 BASIC LIDAR TECHNIQUES MODULE SCENARIO One of the first tasks a geographic information systems (GIS) department using lidar data should perform is to check the quality of the data delivered by the data provider. The department

More information

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

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

Lab 18c: Spatial Analysis III: Clip a raster file using a Polygon Shapefile

Lab 18c: Spatial Analysis III: Clip a raster file using a Polygon Shapefile Environmental GIS Prepared by Dr. Zhi Wang, CSUF EES Department Lab 18c: Spatial Analysis III: Clip a raster file using a Polygon Shapefile These instructions enable you to clip a raster layer in ArcMap

More information

_Tutorials. Arcmap. Linking additional files outside from Geodata

_Tutorials. Arcmap. Linking additional files outside from Geodata _Tutorials Arcmap Linking additional files outside from Geodata 2017 Sourcing the Data (Option 1): Extracting Data from Auckland Council GIS P1 First you want to get onto the Auckland Council GIS website

More information

Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations,

Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations, Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations, readings, and hands on GIS lab exercises. Following the last

More information

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O TOPICS COVERED Spatial Analyst basics Raster / Vector conversion Raster data

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

Raster Data Model & Analysis

Raster Data Model & Analysis Topics: 1. Understanding Raster Data 2. Adding and displaying raster data in ArcMap 3. Converting between floating-point raster and integer raster 4. Converting Vector data to Raster 5. Querying Raster

More information

Add to the ArcMap layout the Census dataset which are located in your Census folder.

Add to the ArcMap layout the Census dataset which are located in your Census folder. Building Your Map To begin building your map, open ArcMap. Add to the ArcMap layout the Census dataset which are located in your Census folder. Right Click on the Labour_Occupation_Education shapefile

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

GEOG 487 Lesson 1: Step-by-Step Activity

GEOG 487 Lesson 1: Step-by-Step Activity GEOG 487 Lesson 1: Step-by-Step Activity Part I: Esri Resources Successful GIS professionals need to teach themselves how to use new technology tools quickly, integrate technical resources other than ArcGIS

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. Height above Nearest Drainage Flood Inundation Analysis

Exercise 5. Height above Nearest Drainage Flood Inundation Analysis Exercise 5. Height above Nearest Drainage Flood Inundation Analysis GIS in Water Resources, Fall 2018 Prepared by David G Tarboton Purpose The purpose of this exercise is to learn how to calculation the

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

Lab Exercise 6: Vector Spatial Analysis

Lab Exercise 6: Vector Spatial Analysis Massachusetts Institute of Technology Department of Urban Studies and Planning 11.520: A Workshop on Geographic Information Systems 11.188: Urban Planning and Social Science Laboratory Lab Exercise 6:

More information

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Practical: Creating and Editing Shapefiles Using Straight, AutoComplete and Cut Polygon Tools Use ArcCatalog to copy data files from:

More information

A Hands-on Experience with Arc/Info 8 Desktop

A Hands-on Experience with Arc/Info 8 Desktop Demo of Arc/Info 8 Desktop page 1 of 17 A Hands-on Experience with Arc/Info 8 Desktop Prepared by Xun Shi and Ted Quinby Geography 377 December 2000 In this DEMO, we introduce a brand new edition of ArcInfo,

More information

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

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

More information

Using Census Data to Calculate Social Inequality in Colombia

Using Census Data to Calculate Social Inequality in Colombia Using Census Data to Calculate Social Inequality in Colombia Written by Carolyn Talmadge, February 8, 2017 What is Social Inequality?... 1 Accessing the Data... 2 Understanding the Metadata & Attribute

More information

GIS Exercise 10 March 30, 2018 The USGS NCGMP09v11 tools

GIS Exercise 10 March 30, 2018 The USGS NCGMP09v11 tools GIS Exercise 10 March 30, 2018 The USGS NCGMP09v11 tools As a result of the collaboration between ESRI (the manufacturer of ArcGIS) and USGS, ESRI released its Geologic Mapping Template (GMT) in 2009 which

More information

Delineating Watersheds from a Digital Elevation Model (DEM)

Delineating Watersheds from a Digital Elevation Model (DEM) Delineating Watersheds from a Digital Elevation Model (DEM) (Using example from the ESRI virtual campus found at http://training.esri.com/courses/natres/index.cfm?c=153) Download locations for additional

More information

Cell based GIS. Introduction to rasters

Cell based GIS. Introduction to rasters Week 9 Cell based GIS Introduction to rasters topics of the week Spatial Problems Modeling Raster basics Application functions Analysis environment, the mask Application functions Spatial Analyst in ArcGIS

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

Protocol for Riparian Buffer Restoration Prioritization in Centre County and Clinton County

Protocol for Riparian Buffer Restoration Prioritization in Centre County and Clinton County Protocol for Riparian Buffer Restoration Prioritization in Centre County and Clinton County Chesapeake Conservancy has developed this methodology to prioritize riparian buffer restoration in Centre County

More information

Making Yield Contour Maps Using John Deere Data

Making Yield Contour Maps Using John Deere Data Making Yield Contour Maps Using John Deere Data Exporting the Yield Data Using JDOffice 1. Data Format On Hard Drive 2. Start program JD Office. a. From the PC Card menu on the left of the screen choose

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

Lab Assignment 4 Basics of ArcGIS Server. Due Date: 01/19/2012

Lab Assignment 4 Basics of ArcGIS Server. Due Date: 01/19/2012 Lab Assignment 4 Basics of ArcGIS Server Due Date: 01/19/2012 Overview This lab assignment is designed to help you develop a good understanding about the basics of ArcGIS Server and how it works. You will

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

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

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

More information

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

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

City of Richmond Interactive Map (RIM) User Guide for the Public

City of Richmond Interactive Map (RIM) User Guide for the Public Interactive Map (RIM) User Guide for the Public Date: March 26, 2013 Version: 1.0 3479477 3479477 Table of Contents Table of Contents Table of Contents... i About this

More information

GIS Workshop Spring 2016

GIS Workshop Spring 2016 1/ 14 GIS Geographic Information System. An integrated collection of computer software and data used to view and manage information about geographic places, analyze spatial relationships, and model spatial

More information

Digitising a map in arcgis desktop 10.3

Digitising a map in arcgis desktop 10.3 Digitising a map in arcgis desktop 10.3 1 CONTENTS 2 Evaluating your map... 2 3 Setting up the base map... 3 4 Georeferencing your map/maps... 3 4.1 Georeferencing tips.... 4 5 Digitising your maps...

More information

Your Prioritized List. Priority 1 Faulted gridding and contouring. Priority 2 Geoprocessing. Priority 3 Raster format

Your Prioritized List. Priority 1 Faulted gridding and contouring. Priority 2 Geoprocessing. Priority 3 Raster format Your Prioritized List Priority 1 Faulted gridding and contouring Priority 2 Geoprocessing Priority 3 Raster format Priority 4 Raster Catalogs and SDE Priority 5 Expanded 3D Functionality Priority 1 Faulted

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

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

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

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

GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I) 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

More information

General Digital Image Utilities in ERDAS

General Digital Image Utilities in ERDAS General Digital Image Utilities in ERDAS These instructions show you how to use the basic utilities of stacking layers, converting vectors, and sub-setting or masking data for use in ERDAS Imagine 9.x

More information

Lab 5: Image Analysis with ArcGIS 10 Unsupervised Classification

Lab 5: Image Analysis with ArcGIS 10 Unsupervised Classification Lab 5: Image Analysis with ArcGIS 10 Unsupervised Classification Peter E. Price TerraView 2010 Peter E. Price All rights reserved Revised 03/2011 Revised for Geob 373 by BK Feb 28, 2017. V3 The information

More information

Tutorial 4 - Attribute data in ArcGIS

Tutorial 4 - Attribute data in ArcGIS Tutorial 4 - Attribute data in ArcGIS COPY the Lab4 archive to your server folder and unpack it. The objectives of this tutorial include: Understand how ArcGIS stores and structures attribute data Learn

More information

Lab 1: Introduction to ArcGIS

Lab 1: Introduction to ArcGIS Lab 1: Introduction to ArcGIS Objectives In this lab you will: 1) Learn the basics of the software package we will be using for the remainder of the semester, and 2) Discover the role that climate and

More information

Table of Contents. 1. Prepare Data for Input. CVEN 2012 Intro Geomatics Final Project Help Using ArcGIS

Table of Contents. 1. Prepare Data for Input. CVEN 2012 Intro Geomatics Final Project Help Using ArcGIS Table of Contents 1. Prepare Data for Input... 1 2. ArcMap Preliminaries... 2 3. Adding the Point Data... 2 4. Set Map Units... 3 5. Styling Point Data: Symbology... 4 6. Styling Point Data: Labels...

More information

Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater.

Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater. Overview: In this week's lab you will identify areas within Webster Township that are most vulnerable to surface and groundwater contamination by conducting a risk analysis with raster data. You will create

More information

Masking Lidar Cliff-Edge Artifacts

Masking Lidar Cliff-Edge Artifacts Masking Lidar Cliff-Edge Artifacts Methods 6/12/2014 Authors: Abigail Schaaf is a Remote Sensing Specialist at RedCastle Resources, Inc., working on site at the Remote Sensing Applications Center in Salt

More information

Geography 281 Map Making with GIS Project Two: Map Design Issues in ArcMap

Geography 281 Map Making with GIS Project Two: Map Design Issues in ArcMap Geography 281 Map Making with GIS Project Two: Map Design Issues in ArcMap This activity provides an introduction to the map design process. It takes you through a typical sequence from the initial decision

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

Lab 11: Terrain Analyses

Lab 11: Terrain Analyses Lab 11: Terrain Analyses What You ll Learn: Basic terrain analysis functions, including watershed, viewshed, and profile processing. There is a mix of old and new functions used in this lab. We ll explain

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

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Written by Gabriel Holbrow and Barbara Parmenter, revised on10/22/2018 for 10.6.1 Raster Suitability Analysis: Siting a

More information