exam2_problems_spring2024_engelmanj

docx

School

University Of Arizona *

*We aren’t endorsed by this school

Course

420

Subject

Mechanical Engineering

Date

Apr 3, 2024

Type

docx

Pages

5

Uploaded by BarristerHerringMaster551

Report
o u t g ri d zon e gri d 4 1 2 5 5 0 1 1 5 1 valu e gri d 1 1 6 4 8 6 0 2 4 2 1 1 4 4 4 0 5 4 1 6 0 8 8 = 3 3 3 0 0 0 0 5 5 4 4 4 4 1 2 3 2 2 1 1 GIST 420 Name Joseph Engelman Exam 2 Spring 2024 Rasters and raster processing Given the zone raster and value raster at right, calculate the zonal variety for the output raster. (6pts) 3 3 3 3 ND 3 3 3 3 3 2 2 4 4 4 2 3 3 3 4 2 ND 2 2 4 outgrid Surfaces 1. The images below are two symbolized slope rasters labelled 1 and 2 with elevation contours overlaying them. The darker colors on the raster indicate higher slope values. Which slope surface was derived from a DEM interpolated using IDW , and which from a DEM interpolated using Topo to Raster? What is it about these interpolation methods that caused the differences in the slope surfaces? (5 points)
Image 1 is a DEM interpolated using IDW and image 2 is a DEM interpolated using Topo to Raster. The IDW tool is a method of interpolation that estimates cell values by averaging the values of sample data points close to each processing cell. The closer a point is to the center of the cell being estimated, the more influence it has in the averaging process. On the other hand, the Topo to Raster tool uses an interpolation technique that is specifically designed to create a surface that closely represents a natural drainage surface. This tool better preserves both ridgelines and stream networks from input contour data. 2. In the image below, the Explore tool has been used to select a facet of a TIN. The popup displays values for three attributes -- elevation, slope, and aspect. When using the Explore tool in ArcGIS Pro to query different locations within the same triangle , which, if any, of these three attributes would return different values at different locations within the triangle and explain why. (5 pts) The Tin_Surface example shows that all three values can change when you click on a different location within a triangle. TINs are made of non-overlapping triangles calculated from irregularly 2 2 1
spaced points that have X, Y, and Z values. Even if you choose a new point within the same triangle, it will alter the horizontal position (X, Y) and the elevation (Z) values. DEM Hydrology 1. Using the flow direction code, calculate flow accumulation from the flow direction grid. (10 pts) 0 0 0 0 0 0 1 2 2 0 0 3 4 3 0 0 0 14 0 1 0 0 2 19 0 2. Briefly describe how an ArcGIS “con” statement is used to differentiate streamflow from surface flow from a flow accumulation raster? (2pts) The "Con" statement in ArcGIS lets you apply conditions to raster datasets to create new ones based on specific criteria. For instance, you can use it to differentiate between streamflow and surface flow in a flow accumulation raster. To do this, you set up a conditional expression by comparing flow accumulation raster values to the threshold value. In the output raster, areas where the flow accumulation exceeds the threshold value, are considered streamflow, whereas areas below the threshold represent surface flow or less significant drainage features. Python and Notebooks 1. Consider the short python code section below. (4 pts) 3
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
my_list= [3, 5, 7] mylist.append(9) After executing the first line, the value of “my_list” will be _ [3, 5, 7] _. After executing the second line, the value of “my_list” will be _ [3, 5, 7, 9] _. 2. The image below is of a Jupyter Notebook with two cells visible. Identify the type of each of the cells and describe what each type, in general, is used for. (2 pts) The text in the first cell, titled "# This is A Title," is written in Markdown, which is a widely used syntax for formatting plain text online. The second cell, labeled "from mxnet", is a Markdown code field. This cell instructs the user to run the code cell that follows. 3. The image below is of an ArcGIS Notebook . Briefly explain what is happening in input cells 59 and 67. ( 4 pts) 4
At line 59, the code is analyzing feature patterns looking for restaurant hot spots and storing the value in the variable “restaurant_hot_spots_item”. Then at line 67, the code is overlaying the information pulled from lin 59 onto a map of Pittsburgh. The code is analyzing feature patterns to find restaurant hot spots and storing the resulting value in a variable called "restaurant_hot_spots_item" at line 59. At line 67, the code is overlaying the information gathered from line 59 onto a map of Pittsburgh. 5