A....
A....
2. Define Entity.
In Geographic Information Systems (GIS), an "entity" refers to a distinct, identifiable object or
concept that can be represented and analyzed spatially. Entities are the fundamental building
blocks of GIS data and can be anything that has a location and can be mapped.
Point Entity: A specific location, such as a GPS coordinate for a bus stop.
Line Entity: A feature like a river or road, which has length but negligible width.
Polygon Entity: An area with defined boundaries, such as the boundary of a land
parcel or a forest.
6. Explain in detail about the raster data models and its compression.
Raster data models are a fundamental way to represent spatial data in GIS and remote sensing
applications. They are particularly suited for representing continuous phenomena like elevation,
temperature, or land cover. Raster data is essentially a grid of cells or pixels, where each cell
contains a value representing information about that location.
1. Basic Concept
Grid Structure: Raster data is organized as a grid of cells, where each cell has a specific
size and contains a value representing a measurement or attribute. Each cell corresponds
to a geographic location and the value represents the attribute of that location.
Resolution: The resolution of a raster dataset is determined by the size of the cells (e.g.,
10x10 meters per cell). Higher resolution means more cells per unit area and more detail.
Binary Raster: Consists of cells with only two possible values, often used to represent
presence/absence or on/off states (e.g., land cover classification: forest vs. non-forest).
Categorical Raster: Contains discrete values representing different categories or classes.
Each cell value corresponds to a class, such as different land use types.
Continuous Raster: Represents continuous data where cell values can vary smoothly
over the surface, such as elevation or temperature. The values typically represent
measurements at specific points and can interpolate between cells.
3. Applications
Remote Sensing: Raster data from satellite imagery or aerial photography for analyzing
land cover, vegetation, and more.
Environmental Modeling: Representing and analyzing continuous variables like
elevation, precipitation, and pollution.
Urban Planning: Mapping and analyzing various aspects of urban environments, such as
infrastructure and land use.
Raster data can be quite large, especially with high resolution and extensive geographic
coverage. Compression techniques are used to reduce the size of raster files for storage
and transmission. Here are common raster data compression methods:
1. Lossless Compression
Lossless compression methods preserve the original data exactly and allow it to be
perfectly reconstructed from the compressed data.
2. Lossy Compression
Lossy compression methods reduce file size by removing some data, which can lead to a
loss of quality. This is often acceptable for certain types of data where slight quality loss
is permissible.
Quality vs. Size: Lossy compression reduces file size at the expense of some data
quality. The degree of compression should be chosen based on the acceptable balance
between file size and data integrity.
Performance: Compression and decompression speed can impact performance,
especially with large datasets or when real-time processing is required.
Compatibility: Ensure that the chosen compression method is compatible with the
software and systems used for processing and analyzing the raster data.
Data models are the conceptual models that describe the structures of databases. The
structure of a database is defined by the data types, the constraints and the relationships for
the description or storage of data. Following are the most often used data models:
1) Hierarchical Data Structure Model
2) Network Data Structure Model
3) Relational Data Structure Model
4) Object Oriented Data Structure Model
1) Hierarchical Data Structure Model It is the earliest database model that is evolved
from file system where records are arranged in a hierarchy or as a tree structure.
Records are connected through pointers that store the address of the related record. Each
pointer establishes a parent-child relationship where a parent can have more than one child but a
child can only have one parent.
There is no connection between the elements at the same level. To locate a particular
record, you have to start at the top of the tree with a parent record and trace down the tree to the
child.
Advantages
• Easy to understand: The organization of database parallels a family tree understanding which is
quite easy.
Disadvantages
• Large index files are to be maintained and certain attribute values are repeated many times
which lead to data redundancy and increased storage.
• The rigid structure of this model doesn’t allow alteration of tables, therefore to add a new
relationship entire database is to be redefined.
Advantages
• The many too many relationships are easily implemented in a network data model.
• Data access and flexibility in network model is better than that in hierarchical model. An
application can access an owner record and the member records within a set.
• It enforces data integrity as a user must first define owner record and then the member records.
• The model eliminated redundancy but at the expense of more complicated
relationships.