There are several advantages and disadvantages for using either the vector or raster data model to store spatial data. These are summarized below.

Vector Data   Advantages :
  Data can be represented at its original resolution and form without generalization.
  Graphic output is usually more aesthetically pleasing (traditional cartographic representation);
  Since most data, e.g. hard copy maps, is in vector form no data conversion is required.
  Accurate geographic location of data is maintained.
  Allows for efficient encoding of topology, and as a result more efficient operations that require topological information, e.g. proximity, network analysis.
     
    Disadvantages:
  The location of each vertex needs to be stored explicitly.
  For effective analysis, vector data must be converted into a topological structure. This is often processing intensive and usually requires extensive data cleaning. As well, topology is static, and any updating or editing of the vector data requires re-building of the topology.
  Algorithms for manipulative and analysis functions are complex and may be processing intensive. Often, this inherently limits the functionality for large data sets, e.g. a large number of features.
  Continuous data, such as elevation data, is not effectively represented in vector form. Usually substantial data generalization or interpolation is required for these data layers.
  Spatial analysis and filtering within polygons is impossible
Raster Data   Advantages :
  The geographic location of each cell is implied by its position in the cell matrix. Accordingly, other than an origin point, e.g. bottom left corner, no geographic coordinates are stored.
  Due to the nature of the data storage technique data analysis is usually easy to program and quick to perform.
  The inherent nature of raster maps, e.g. one attribute maps, is ideally suited for mathematical modeling and quantitative analysis.
  Discrete data, e.g. forestry stands, is accommodated equally well as continuous data, e.g. elevation data, and facilitates the integrating of the two data types.
  Grid-cell systems are very compatible with raster-based output devices, e.g. electrostatic plotters, graphic terminals.
     
    Disadvantages:
  The cell size determines the resolution at which the data is represented.;
  It is especially difficult to adequately represent linear features depending on the cell resolution. Accordingly, network linkages are difficult to establish.
  Processing of associated attribute data may be cumbersome if large amounts of data exists. Raster maps inherently reflect only one attribute or characteristic for an area.
  Since most input data is in vector form, data must undergo vector-to-raster conversion. Besides increased processing requirements this may introduce data integrity concerns due to generalization and choice of inappropriate cell size.
  Most output maps from grid-cell systems do not conform to high-quality cartographic needs.

It is often difficult to compare or rate GIS software that use different data models. Some personal computer (PC) packages utilize vector structures for data input, editing, and display but convert to raster structures for any analysis. Other more comprehensive GIS offerings provide both integrated raster and vector analysis techniques. They allow users to select the data structure appropriate for the analysis requirements. Integrated raster and vector processing capabilities are most desirable and provide the greatest flexibility for data manipulation and analysis.

Vector is a data structure, used to store spatial data. Vector data is comprised of lines or arcs, defined by beginning and end points, which meet at nodes. The locations of these nodes and the topological structure are usually stored explicitly. Features are defined by their boundaries only and curved lines are represented as a series of connecting arcs. Vector storage involves the storage of explicit topology, which raises overheads, however it only stores those points which define a feature and all space outside these features is ‘non-existent’.

A vector based GIS is defined by the vectorial representation of its geographic data. According with the characteristics of this data model, geographic objects are explicitly represented and, within the spatial characteristics, the thematic aspects are associated.

There are different ways of organising this double data base (spatial and thematic). Usually, vectorial systems are composed of two components: the one that manages spatial data and the one that manages thematic data. This is the named hybrid organisation system, as it links a relational data base for the attributes with a topological one for the spatial data. A key element in these kind of systems is the identifier of every object. This identifier is unique and different for each object and allows the system to connect both data bases.

In its simplest form, a raster consists of a matrix of cells (or pixels) organized into rows and columns (or a grid) where each cell contains a value representing information, such as temperature. Rasters are digital aerial photographs, imagery from satellites, digital pictures, or even scanned maps.

Advertisement