Spatial data structures Flashcards

lecture 7

1
Q

What are the 2 vector models structures?

A
  1. Georelational Model
  2. Object Based Data Model
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Georelational Data Model?

A

Geometry and attributes are stored separately.
Georelational datamodel uses feature identification number to link feature geometry to ite attributes.
The 2 components must share the same ID (syncronised) so that they can ben queried, analysed and displayed in unison.

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

What is the GDM shapefile?

A

It is an example if the georelational model.

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

What are attributes saved as in feature layers?

A

database .dbf

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

What is the shapefile?

A

.shp links all other feature layers to be displayed together.
doesn’t come with topology.

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

What are the advantages of the GDM shapefile?

A
  • Display faster
  • Non-proprietary & interoperable (i.e., can be used across
    different software packages)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the disadvantages of GDM shapefile?

A
  • Shapes can overlay (not associated with topology)
  • Boundaries must be stored twice
  • Minimal error checking
  • Data quality issues
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is GDM coverage?

A

Stores vector data - contains both spatial and attribute data (feature classes) for geographic features.
Have topology - determines relationships between features.
Made up of multiple physical files in a folder.
Coverage is proprietary.

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

What is the Object Orientated Data Model? (OODM)

A

Stores geometry and attributes in one system.
Geospatial data is treated as objects.
Object = road, symbol, school, co-ordinate system etc.

Property - attributes of features in a layer.
Method - an action that can be performed on a layer
Feature Class - stores spatial features of the same geometry = feature layer.
Feature dataset - stores features that share extent and co-ordinate system - projections are set at this level not at the class level.

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

How does the OODM differ from the GDM?

A
  1. Feature and attributes stored in 1 system.
  2. Allows spatial features to be associated with a set of properties and methods.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a personal geodatabase (OODM)?

A
  • Stores data as tables in a Microsoft access database
    with .mdb extension.
  • Has file limit of 2GB and can only be used in windows
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a file geodatabase (OODM)\?

A
  • Stores data in many small sized files in a folder with .gdb
    extension.
  • The file geodatabase has no file size limit and can work
    across multiple Operating Systems (Microsoft & Linux)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is topology in the geodatabase?

A
  • Defines topology as relationship rules and lets the user choose the rules,
    if any, to be implemented in a vector layer
  • Topological rules which apply within feature classes is functionally
    similar to coverage topology
  • Rules applied to two or more feature classes are unique to
    Geodatabase.

examples:
* Country boundaries must not overlap.
* Country boundaries must not have gaps.
* Contour lines in a vector line layer must not intersect (cross each
other).

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

What are the advantages of the geodatabase?

A

❖ Central Storage of files/data
❖ Hierarchical structure is useful for organisation and management
❖When created, new data in a project will be created with already
defined parameters
❖Offers on the fly Topology to features within feature class which
improves data quality

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

What is the raster model structure?

A

How raster data is represented.
Refers to the method or format for storing raster data in a computer.

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

What are the 3 common methods of storing raster data?

A
  1. Cell by cell Coding
  2. Run Length Coding
  3. Quadtree Coding
17
Q

What is cell by cell coding?

A

Presents the simplest raster structure.
stored as a matrix, cell values written into a file by row format.
Functioning at cell level
Ideal for raster surfaces that change continuously and rapidly across space.
e.g. satellite images

18
Q

What is run length coding?

A

When cell by cell coding becomes redundant.
Stores values by row and group.
Group = series of adjacent cells with the same value.
for each row, the starting and end cells denote the group’s length.
Run length coding reduces the file size - functioning does not occur at a per-cell level.
Compression and grouping method.

19
Q

What is quadtree coding?

A

recursively divides the raster data into quarters.
Once the raster has been divided into 4, each quarter is examined to determine whether all pixels have the same value.
If all pixels do have the same value, then this quarter is not sub-divided
any further.
Where this is not the case, then each of the non homogenous quarters is divided into 4.
Each of these quarters is examined, and those not homogenous are subdivided again.
This recursive subdivision is complete once every ‘quarter’ is homogenous

20
Q

Raster data compression

A
  • Raster data require considerable memory space
  • Data compression refers to the reduction in data volume
  • Raster data compression can either be:
    1. Lossless
    2. Lossy
21
Q

What is lossless compression?

A
  • Preserve pixel value and allows original raster to be
    precisely reconstructed
  • Desirable for data used for analysis or creation of new
    data
  • Use TIFF or GEOTIFF format NB for MCQ’s
22
Q

What is lossy data?

A
  • Cannot fully reconstruct original image
  • Higher compression ratios
  • Desirable for background images, NOT analysis
  • Compression can result in loss of geo-referencing info
  • Use JPEG format
23
Q

Rasterisation and integration

A
  • To take advantage of both vector and raster data for a GIS project we
    must consider data conversation and integration.
  • The strength of GIS is it’s ability to do analysis using many different
    types an formats of data together.
  • Satellite Imagery commonly used as a back-drop to vector data –
    Google earth
  • DEM – NB source for deriving contour, slope, aspect data
  • Vector data used to verify RS data
  • Vector data used as control points for geo-processing
  • Vector data used for image stratification – use vector data to divide
    image in areas of different characteristics for individual processing.
  • Big move towards a closer integration of GIS and RS
24
Q

What are the conversion types?

A
  1. Rasterization
  2. Vectorization
  3. Hybrid Models (Integration)
25
Q

Rasterisation

A

Rasterization converts vector data into raster data

26
Q

Vectorisation

A

Converts raster data to vector data

27
Q

Hybird models

A
  • Use both Vector and Raster models simultaneously
  • Most modern GIS are hybrid systems
  • ArcGIS (+Spatial Analyst)
  • GRASS (limited vector)
  • IDRISI (limited vector)