GGR321 - Quiz 3 + 4 questions

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
GameKnowt Play
New
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/30

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

31 Terms

1
New cards

Cost distance algorithm

  1. create a source grid with 0 at starting point and some other value for all other cells

  2. create a cost grid with same size and resolution but containing the costs for each cell

  3. run the cost distance facility in GIS on these two input grids, output ACS grid along with tracking grid

  4. To create the least cost paths, a target grid containing the target/destination points

2
New cards

Historically, the pioneer of Spatial Analysis is considered to be _________ in his study of the cholera outbreak in London, Soho area, in 1850s .

Dr. John Snow

3
New cards

Spatial analysis types:

Inductive

examining empirical evidence in the search for patterns that might support new theories or general principles

4
New cards

Deductive

focusing on the testing of known theories or principles against data

5
New cards

Normative

Using spatial analysis to develop or prescribe new or better designs

6
New cards
<p>In density estimation, as a form of spatial analysis based on distance, the kernel’s shape depends on a distance parameter;  </p><p>Increasing the value of the parameter results in </p><p><br></p>

In density estimation, as a form of spatial analysis based on distance, the kernel’s shape depends on a distance parameter;

Increasing the value of the parameter results in


a broader and lower kernel

7
New cards

Reducing the value of the (distance) parameter results in

a narrower and sharper kernel

8
New cards

The method of spatial interpolation of rainfall estimates from a few rain gauges to obtain estimates at other locations where rainfall had not been measured:

 

Inverse-distance weighting,

Kriging, 

Thiessen polygons

Thiessen polygons

9
New cards

Short script in ArcPy to set up a workspace in ArcGIS Pro for data located at C:/PythonStart

arcpy.env.workspace = "C:/PythonStart"

10
New cards

Geoprocessing tools; parameters and their properties:

Name

a unique name for each tool parameter

11
New cards

Type

the type of data expected, such as feature class, string, integer, raster

12
New cards

Direction

whether the parameter defines input or output values

13
New cards

Required

whether a value must be provided for a parameter or is optional

14
New cards

3D Analyst

Analyzes and creates 3D GIS data and performs 3D surface operations using rasters, TINs, terrains, and LAS datasets (lidar)

15
New cards

Network Analyst

Measures distances and travel times along a network to find a route between multiple locations, creates drive-time buffers or service areas, and finds the best locations for facilities to serve a set of locations

16
New cards

Image Analyst

Interprets and uses imagery, performs feature extraction and measurement, and performs classification and object detection using machine learning

17
New cards

Spatial Analyst

Finds the most suitable locations, calculate distance and determine optimal paths by incorporating the cost of travel, analyze and interpolate surfaces, calculate density, conduct hydrologic analysis, perform statistical analysis, and perform various raster-based mathematical operation

18
New cards

In spatial analysis hypothesis testing, randomization tests are uniquely adapted to testing hypotheses about spatial patterns - True or False?

True

19
New cards

Geoprocessing in ArcGIS Pro allows to perform spatial analysis and modeling with the use of _____ , ______and , _______ as well as automate GIS tasks.

tools, models, and scripts

20
New cards

Availability of geoprocessing tools in ArcGIS Pro depends in part on license level: Basic, Standard, or Advanced and license for extensions, such as ArcGIS 3D Analyst, ArcGIS Network Analyst, and ArcGIS Spatial Analyst. T or F

True

21
New cards

Assume you're using Python to find areas of suitable vegetation that exclude areas heavily impacted by major roads. Please match accordingly the name of the step with the corresponding line(s) of the script: 

import system modules, set environment settings, select suitable vegetation patches from all vegetation

22
New cards

Types of geoprocessing tools:

Built-in tools

These tools are built using ArcObjects and a compiled programming language such as C++.

23
New cards

Model tools

These tools are created using ModelBuilder.

24
New cards

Script tools

These tools consist of Python scripts that are accessible using a tool dialog box.

25
New cards

ArcPy modules:

arcpy.da

a module for working with data

26
New cards

arcpy.sa

a module for map algebra and raster analysis

27
New cards

arcpy.ia

a module for image analysis and interpretation

28
New cards

arcpy.mp

a map scripting module

29
New cards

Please match the method of accessing Clip tool with correct line of Python code:

by corresponding function:

import arcpy

arcpy.env.workspace = “C:/Data”

arcpy.Clip_analysis(“streams.shp”, “study.shp”, “result.shp”)

30
New cards

Please match the method of accessing Clip tool with correct line of Python code:

by using modules that match the toolbox alias name:

import arcpy

arcpy.env.workspace = “C:/Data”

arcpy.analysis.Clip(“streams.shp”, “study.shp”, “result.shp”)

31
New cards

The Buffer tool has three required parameters and five optional parameters. To specify a dissolve option (e.g., LIST) and the field to use in this dissolve (e.g., CODE), two optional parameters must be skipped. This can be done in several ways. Please choose ALL correct answers:

arcpy.Buffer_analysis("roads", "buffer", "100 METERS", dissolve_option="LIST", dissolve_field="CODE")

 

arcpy.Buffer_analysis("roads", "buffer", "100 METERS", "#", "#", "LIST", "CODE")

 

arcpy.Buffer_analysis("roads", "buffer", "100 METERS", "", "", "LIST", "CODE")

 

arcpy.Buffer_analysis("roads", "buffer", "100 METERS", None, None, "LIST", "CODE")