GEOG 380 - Topic 09 - Vector analysis

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/42

flashcard set

Earn XP

Description and Tags

Vector Analysis

Last updated 8:53 PM on 4/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

43 Terms

1
New cards

What are the three major categories of GIS analysis covered in this lecture?

Queries, measurements, and transformations.

2
New cards

What is a query in GIS?

A question asked of the GIS database that retrieves information without changing the database.

3
New cards

What is the difference between a spatial query and an aspatial query?

A spatial query works by location or spatial relationship, while an aspatial query works on attribute table information, often using SQL.

4
New cards

What is an entity in GIS?

An individual point, line, or polygon in a GIS database.

5
New cards

What is an attribute in GIS?

Information stored about a geographic entity. In vector GIS there can be many attributes per feature; in raster GIS the grid code usually stores the main attribute

6
New cards

What is a data layer in GIS?

One theme or dataset in a GIS, made up of entities and their associated attributes.

7
New cards

What is the difference between raster and vector data in analysis?

Vector represents discrete features as points, lines, and polygons, while raster represents space as pixels or grid cells. Both can do many of the same analyses, but conversion between them can introduce errors.

8
New cards

Why is it often best to keep data in its native format?

Because converting between raster and vector can introduce errors.

9
New cards

What is a GIS function or operation?

A data analysis procedure performed by a GIS.

10
New cards

What is an algorithm in GIS?

An unambiguous sequence of GIS operations designed to solve a problem.

11
New cards

What is Boolean logic used for in GIS?

It is used to combine query conditions into more complex expressions.

12
New cards

What does the Boolean operator AND mean?

Both conditions must be true

13
New cards

What does the Boolean operator OR mean?

At least one condition must be true

14
New cards

What does the Boolean operator NOT mean?

It reverses or excludes a condition.

15
New cards

What kinds of measurements are common in GIS?

Length, perimeter, and area.

16
New cards

What is Euclidean distance?

Straight-line distance on a flat plane, based on the Pythagorean theorem.

17
New cards

When is Euclidean distance most appropriate in GIS?

When working on a projected flat surface over a relatively small area where Earth curvature is negligible. Inference supported by the lecture’s flat-plane description.

18
New cards

What is great circle distance?

The shortest distance between two points on a spherical Earth.

19
New cards

Why is great circle distance still an approximation?

Because Earth is not a perfect sphere; it is more accurately described as a geoid.

20
New cards

What is Manhattan distance?

Distance measured along raster cell sides, like moving in a grid.

21
New cards

Why are all GIS measurements approximations?

Because vector features are simplified into straight segments, raster features into pixels, and measurements are affected by projection distortion and slope.

22
New cards

How is polygon perimeter calculated in vector GIS?

By summing the lengths of the polylines that define the polygon boundary.

23
New cards

How is polygon perimeter estimated in raster GIS?

By multiplying the number of cell sides along the boundary by the pixel size.

24
New cards

What is a transformation in GIS?

A spatial analysis method that transforms attributes or entities into useful new products.

25
New cards

What are some examples of GIS transformations from the lecture?

Buffers, overlays, point-in-polygon, and interpolation.

26
New cards

What is a buffer in GIS?

A new object or zone created around point, line, or polygon features within a specified distance

27
New cards

Give one real-world use of buffering.

Identifying danger zones around industrial accidents, customers within driving distance of a store, or protected riparian areas near streams.

28
New cards

What advantage do rasters have for buffering?

Raster buffering can be extended to include friction or travel cost, not just simple straight-line distance.

29
New cards

What is point-in-polygon analysis?

A GIS operation that determines whether a point lies inside or outside a polygon.

30
New cards

How does the standard point-in-polygon algorithm work?

A line is extended from the point toward infinity. If it crosses the polygon boundary an odd number of times, the point is inside; if even or zero, it is outside.

31
New cards

What is polygon overlay?

The spatial intersection and combination of two polygon layers to produce a new layer with combined geometry and attributes.

32
New cards

What does Intersect do in overlay analysis?

It keeps only the portions shared by both input layers.

33
New cards

What does Union do in overlay analysis?

It keeps the input features and adds attributes from the identity layer where overlap occurs

34
New cards

What does Clip do in overlay analysis?

It cuts an input layer down to the boundary of another layer

35
New cards

What does Erase do in overlay analysis?

It removes the areas of the input layer that overlap with the erase layer.

36
New cards

What is a sliver polygon?

A small unwanted polygon created during vector overlay because boundaries in different layers do not line up perfectly.

37
New cards

Why do slivers happen in vector overlay?

Because the same boundary may be digitized slightly differently in each layer due to small errors or differences in detail

38
New cards

Why is sliver creation less of an issue in raster overlays?

Because raster cells all align on the same grid.

39
New cards

What is spatial interpolation?

A set of algorithms used to estimate values of a continuous field in places where no measurements exist.

40
New cards

Give two examples of interpolation problems.

Estimating rainfall between weather stations and estimating elevation from contour lines.

41
New cards

What interpolation methods are named in the lecture?

Thiessen polygons, inverse-distance weighting, and kriging.

42
New cards

Why is interpolation used for continuous data rather than discrete features?

Because it estimates values across a continuous surface between known sample points.

43
New cards

What is the main takeaway from the lecture summary?

Simple GIS functions like queries, measurements, and transformations can be combined into powerful algorithms for solving complex geographic problems.