GIS Generally Flashcards

1
Q

Spatial Data

A

data with a geographic location, representation, or reference point that it describes.

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

Cartography

A

the science of map making, including data inclusion, layout, elements, colors, and design. As much as it’s a science, it’s an art form.

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

Shapefile

A

An Esri proprietary data format for storing geographic data. Very cross-GIS compatible, but limiting in many aspects. Often misused to mean any geographic dataset as in “could you send me that shapefile?”

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

Layer

A

multiple meanings in a GIS context:

a. The distinct data elements that compose a map document, ordered one on top of the next for GIS drawing order (top is drawn last and seen first)

b. A single data element, saved into a GIS file format along with its associated symbology.

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

Scale

A

the ratio of the size of elements on screen or in print on the map to their size in the real world

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

Raster

A

spatial data that stores location based upon a single origin point and a data stream of known width, height, and resolution. Often used for continuous surfaces.

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

DEM-Digital Elevation Model

A

A specific use case of raster data where the pixel value represents the elevation of areas covered by the pixel. Sometime called a DTM (digital terrain model) or DED (digital elevation dataset).

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

Vector

A

spatial data that stores location using Cartesian coordinate locations.
a. Point – A single spot in (usually) two dimensional space. Attributes represent only that location (and sometimes are inferred to represent nearby locations).

b. Line (Polyline) – Multiple points connected to represent all locations in between along the connection.

c. Polygon – Multiple polylines connected to create a boundary. Polygon zones are generalized representations where all locations contained within the boundaries are considered to have the same property.

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

Coordinate System/Spatial Reference

A

defines the origin point, coordinate space, and geoid for a dataset’s spatial data.
a. Datum – the origin point of the coordinate system and information required to accurately define an origin, like a surface model.

b. Geographic Coordinate System (GCS) – A coordinate system that specifies latitude and longitude as coordinates.

c. Projected Coordinate System – similar to and includes a GCS. “Projects”/transforms coordinates into a new coordinates system to display a map in 2D space. Sometimes referred to as “the projection” of a dataset.

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

Resolution

A

the density of data of a raster dataset or rasterized map document. Sometimes used to mean the density of data in any dataset. For raster datasets, this value is expressed as the length of the side of a pixel (e.g.: 10m pixels). For rasterized graphic formats, it is most commonly expressed in pixels per inch of paper (ppi) or dots per inch of paper (dpi) and a good target to reach is 300 dpi for clear prin

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

Geoprocessing

A

the practice of using GIS tools to process, transform, filter, and query GIS data.

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

Python

  1. Basemap – a prerendered set of mapping data that can be placed below the data of interest to quickly create a map with context. Frequently, a basemap is served up over the Internet by a basemap server and loaded on the fly by your GIS.
A

a programming language with capabilities for GIS analysis. Useful for automating tasks in GIS.

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

Join

A

The use of a common attribute to link data tables in order to access the attributes of one along with the other or assign the attributes of one to the other based upon a key value. When this is the record ID of the other dataset, it’s often a foreign key. For example, summary statistics tables built for HUC12s can be linked back to the HUC12 by the HUC12 ID.

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

Spatial Join

A

Similar to a Join in that it transfers attributes, but the linkage used to connect the datasets is the location of each item. I find this to be the “hammer” of GIS.

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

Symbology

A

The representation of a particular dataset in a map document.

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

Tables

A

A data structure with a defined set of fields, and many rows representing individual data records.
a. Fields (columns) – a variable represented in a data table. Instances of this field can be looked up per record to find the value.

b. Rows – individual data records

c. Primary Key – an identifier attribute, usually assigned automatically by the database management engine, that provides a unique integer value by which to reference a data record.

17
Q

Environment Variables (Environments)

A

Variables/settings that affect the run of a geoprocessing tool. In other computer systems, variables that affect how programs are found and run.