Chapter 3: Data management and processing systems Flashcards

1
Q

Functional components of GIS

A

Data capture and preparation, data storage, data analysis, and presentation of spatial data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Spatial Data Infrastructures (SDI)

A

The relevant base collection of technologies, policies and institutional arrangements that facilitate the availability and access to spatial data (i.e. arrangements between organisations, arrangements between software systems).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Geo-webservices

A

A geo-webservice is an online platform that allows users to access and manipulate geospatial data over the internet. It follows open standards set by organizations like the Open Geospatial Consortium (OGC) and provides a standardized way to share, integrate, and analyze geographic information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Vector data

A

Vector data represents geographic features as points, lines, and polygons.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Raster data

A

Raster data represents geographic information as a grid of cells or pixels, where each cell contains a value representing a specific attribute or measurement. It is commonly used to store continuous data, such as satellite imagery or elevation models, and allows for detailed spatial analysis and visualization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Advantages of raster representation

A

Simple data structure, simple implementation of overlays, efficient for image processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Disadvantages of raster representation

A

Less compact data structure, difficulties in representing typology, cell boundaries independent of feature boundaries.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Advantages of vector representation

A

Efficient representation of topology, adapts well to scale changes, allows representing networks, allows easy association with attribute data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Disadvantages of vector representation

A

Complex data structure, overlay more difficult to implement, inefficient for image processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Maintenance of spatial data

A

The combined activities to keep the data set up-to-date and as supportive as possible to the user community (such as: obtaining new data, entering them into a system, replacing outdated data)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Spatial decision support systems (SDSS)

A

An information system composed of a database, FIS software, models, and so called knowledge engine.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Spatial data analysis

A

Computing new information that provides new insight from the existing, stored spatial data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Database

A

A large, computerized collection of structured data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Database management system (DBMS)

A

A software package that allows the user to set up, use and maintain a database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Data model

A

A language that allows the definition of:
1) The structures that will be used to store the base data
2) The integrity constraints that the stored data has to obey at all moments in time
3) The computer programs used to manipulate the data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Queries

A

Data extraction from databases without altering it.

17
Q

Relational data models

A

A database with a collection of relations (or tables).

18
Q

Relation (table)

A

A collection of tuples (records) that are similarly shaped.

(Similarly shaped, i.e. single domain of values. An attribute’s domain is a (possibly infinite) set of atomic values such as the set of integer number values, the set of real number values, etc.

19
Q

Tuple

A

An individual row or record in a database table. Each tuple records the values for the columns defined in the table.

20
Q

Key (relation, tuple)

A

A key of a relation commprises one or more attributes. A Value of these attributes uniquely identifies a tuple.

(ESRI: An attribute or set of attributes in a database that uniquely identifies each record.)

21
Q

Foreign key (relation, tuple)

A

An attribute or set of attributes in one table that match the primary key attributes in another table. Foreign keys and primary keys are used to join tables in a database.

22
Q

Tuple selection (query, operator)

A

Works like a filter: it allows tuples that meet the selection condition to pass, and disallows tuples that do not meet the condition. (Wijzigt tabllen op basis van attribuutkwaliteiten (praktische zin: rijen), bijv: AreaSize > 1000.)

23
Q

Attribute projection (query, operator)

A

Works like a tuple formatter: it passes through all tuples of the input, but reshapes each of them in the same way. (Wijzigt tabellen op basis van kolommen). This operator produces fewer attributes compared to the input relation.

24
Q

Relation schema

A

In a relational database, the schema defines the tables, the fields in each table, the relationships between fields and tables, and the grouping of objects within the database. Schemas are generally documented in a data dictionary. A database schema provides a logical classification of database objects.

25
Q

Spatial database/Geodatabase

A

Allows users to store, query and manipulate collections of spatial data.