Geographical Information System Power Point Presentation

saravanakumarsoman1 25 views 49 slides Sep 19, 2024
Slide 1
Slide 1 of 49
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20
Slide 21
21
Slide 22
22
Slide 23
23
Slide 24
24
Slide 25
25
Slide 26
26
Slide 27
27
Slide 28
28
Slide 29
29
Slide 30
30
Slide 31
31
Slide 32
32
Slide 33
33
Slide 34
34
Slide 35
35
Slide 36
36
Slide 37
37
Slide 38
38
Slide 39
39
Slide 40
40
Slide 41
41
Slide 42
42
Slide 43
43
Slide 44
44
Slide 45
45
Slide 46
46
Slide 47
47
Slide 48
48
Slide 49
49

About This Presentation

Geographical Information System


Slide Content

introduction to geographical information system Unit – II Dr. Rambabu Palaka , Professor , BVRIT Oct. 2020

Topics Introduction to GIS Components of GIS Types of Data Spatial Data Non-Spatial Data GIS Operations Coordinate Systems Datum Map Projections Raster Data Compression Techniques GIS Software Free GIS Data Resources

Data vs Information Data, by itself, generally differs from information. Data is of little use unless it is transformed into information. Information is an answer to a question based on raw data. We transform data into information through the use of an Information System.

What is GIS? A Geographic Information System (GIS) is a computer system for capturing, storing, checking, and displaying data related to positions on Earth's surface.

Geographic Information Systems (GIS) Geography – The study of where features are located on the Earth’s surface. Geographic coordinate systems latitude longitude Represent exact positions on the Earth 42.3216, -71.089118 (lat. long. for Boston) Georeferencing / Geocoding – The process of assigning geographic coordinates to features to represent their location.

GIS Functions Capture: Paper maps, digital data, coordinates, GPS, all together = gis data Store: Vector (database consisting of points, lines and polygons) or raster formats (grid cells or pixels) Query: Identifying specific features, identify features based on conditions (counties with population greater than 500,000) Analyze: Proximity (parcels 100 feet from the road), overlay, network analysis (how linear features are connected Display: Maps, graphs, Reports Output: Paper maps, image

Data Capture

Data Storage

Common Manipulation Query Reclassification Map Projection changes Spatial Analysis Buffering Overlay Network Spatial Data Manipulation and Analysis

Data Display and Output

Components of GIS

Types of Data 1. Attribute data: Says what a feature is Ex.: statistics, text, images, sound, etc. 2. Spatial data: Says where the feature is Vector data: Discrete data Points Lines Polygons (zones or areas) Raster data: Continuous data

Representation of Spatial Elements

Raster Data

Vector Data

Entity Representations

Raster vs Vector

Data Model A geographic data model is a structure for organizing geospatial data so that it can be easily stored and retrieved. Geographic coordinates Tabular attributes

File-based Data Models Coverages Developed for workstation Arc/Info ~ 1980 Complex structure, proprietary format Attributes in Info tables Shapefiles Developed for ArcView ~ 1993 Simpler structure in public domain Attributes in dBase (.dbf) tables Geographic coordinates and attributes are stored in separate but linked files Arc Info

Geodatabase model Stores geographic coordinates as one attribute (shape) in a relational database table Uses MS Access for “Personal Geodatabase ” (single user) Uses Oracle, SQL Server, MySQL or other commercial relational databases for “Enterprise Geodatabases ” (many simultaneous users) Shape

File Formats

Shape File

KML

GeoJSON

GeoJSON

Raster Data - Compression Techniques Raster data is comprised of grid cells. Vector data is comprised of vertices and paths. These are the two primary spatial data types in GIS. Raster Data: Accuracy depends on cell size. Cell size must be small enough to capture the required detail. And as resolution increases, the size of the cell decreases. But this comes at a cost for speed of processing and data storage. Raster storage in its raw state is inefficient because it is normally stores values row-by-row from the top left corner. The way to improve raster size efficiency is through image compression . And there are several ways to use GIS compression to reduce file size and still maintain quality of data.

Full raster coding (no-compression) By convention, raster data is normally stored row by row from the top left corner.

Types of Compression Techniques Types of Compression Techniques: Run Length Encoding – Grouping Rows of Data Block Coding – Grouping Blocks of Data Chain Coding – Defining the Exterior Boundary Quadtree Encoding – Subdividing Data Into Quarters

Run Length Encoding – Grouping Rows of Data Run length encoding stores cells on a row-by-row basis. Instead of recording each individual cell’s values, run length encoding groups cell values by row. Take this line of data: AAAAAABBBBCCCCCCCCC It can be rendered as: 6A4B9C This image encoding method reduces data volumes because each line is recorded more efficiently. Even though the same information is being held, values that are the same are stored as a string.

In this example, the first row is blank and is stored as (0,8). This means there are 8 cells and they are all zeros. In the second row, there are 4 consecutive zeros so it gets a value of (0,4). After this, we have three consecutive cells with the value 1 so it gets a value of (1,3). This continues until it reaches the bottom-right cell.

2. Block Coding – Grouping Blocks of Data The block coding raster storage technique assigns areas that are blocks to reduce redundancy. The block coding raster image compression method subdivides an entire raster image into hierarchical blocks. It’s an extension of the run length encoding technique, but extends it to two dimensions.

In the example above: Instead of storing 64 grid cells, all it takes is just 7 blocks. Using block coding, it requires one 3×3 block, two 2×2 blocks and four 1×1 cell blocks to encode this raster image. In this block coding example, the top-left corner is used as a reference for each block.

Block coding (lossless)

3. Chain Coding – Defining the Exterior Boundary Chain coding defines the outer boundary using relative positions from a start point. The sequence of the exterior is stored where the endpoint finishes at the start point. During the encoding, the direction is stored as an integer. However, in this example we use cardinal directions for simplicity. For example, the value 0 is north and 1 is east.

During the encoding, the direction is stored as an integer. However, in this example we use cardinal directions for simplicity. For example, the value 0 is north and 1 is east . In the example, we start at position (5,2). From here we define the border using cardinal directions and number of movements. We move east 3 positions until we hit the edge. At this location, we move south 4 positions. This process continues until the end point hits the start point. Note: Only for the purpose of this exercise, we used north, east, south and west as alphabetical values. When encoded, it is a numerical value.

4. Quadtree Encoding – Subdividing Data Into Quarters Quadtrees are raster data structures based on the successive reduction of homogeneous cells. It recursively subdivides a raster image into quarters. The subdivision process continues until each cell is classed. It reduces raster storage requirements. It also is dependent on the complexity of the feature and the resolution of the smallest grid cell. In the example, the top-left and bottom-right 8×8 grids do not need to be subdivided further because they are homogeneous. The top-right 8×8 grid is subdivided into three 4×4 grid. The remaining 4×4 grid is separated into 4 individual classes.

Quandtree coding (lossless)

GIS Software GIS Software: Google Earth Pro – To View and Download Historical Satellite Image Data Two Versions: Web & Desktop QGIS – Open Source ArcGIS – ESRI’s Product - Commercial Software AutoCAD Map – Autodesk’s Product (No Support for Analysis, But useful for Data Creation) - Commercial Global Mapper – Free and Commercial MapInfo - Commercial Small World - Commercial Bentley Map - Commercial

Free GIS Data Resources Free GIS Data Sources: ISRO-NRSC Bhuvan Website - https://bhuvan.nrsc.gov.in (for Indian Satellite Data) USGS - https://www.usgs.gov (for World Satellite Data) Google Earth Engine - https://earthengine.google.com (For World Satellite Data Processing & Analysis using JavaScript / Python script without Downloading Data and without GIS Software) Free GIS Data Viewers: Google Earth (Web Version) - https://earth.google.com/web Google Earth Pro (Desktop Version) - https://www.google.com/earth/versions/#download-pro (To view and download Historical Image Data)

Reference Textbook of Remote Sensing and Geographical Information Systems M. Anji Reddy BS Publications
Tags