Gis Remote Sensing

From BloomWiki
Revision as of 14:23, 23 April 2026 by Wordpad (talk | contribs) (BloomWiki: Gis Remote Sensing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?

GIS (Geographic Information Systems) and Remote Sensing are the "Digital Eyes" of geography. Remote Sensing is the act of collecting data about the Earth from a distance—usually using satellites, drones, or planes. GIS is the software used to store, analyze, and visualize that data by stacking it into "Layers." From the GPS on your phone that finds the nearest pizza to the satellite maps that track deforestation in the Amazon or the spread of a wildfire, these technologies have turned the Earth into a "Smart Planet." They allow us to see patterns and connections that are invisible to the naked eye.

Remembering

  • GIS (Geographic Information System) — A computer system for capturing, storing, checking, and displaying data related to positions on Earth's surface.
  • Remote Sensing — The scanning of the earth by satellite or high-flying aircraft in order to obtain information about it.
  • Pixel — The smallest unit of an image; in remote sensing, one pixel might represent 10x10 meters of ground.
  • Resolution (Spatial) — The level of detail in an image; how small of an object can you see?
  • Resolution (Spectral) — The ability of a sensor to "see" colors beyond the human eye (e.g., Infrared, Ultraviolet).
  • Vector Data — Geographic data represented as Points, Lines, or Polygons (e.g., a city point, a road line).
  • Raster Data — Geographic data represented as a Grid of Pixels (e.g., a satellite photo).
  • Layer — A single "theme" of data in a GIS (e.g., a layer of 'Rivers' on top of a layer of 'Cities').
  • GPS (Global Positioning System) — A network of satellites used to determine the ground position of an object.
  • Lidar — A remote sensing method that uses light in the form of a pulsed laser to measure ranges (creating 3D maps).
  • Metadata — "Data about data"; information on when, where, and how a map was made.
  • Geoprocessing — Using tools to manipulate GIS data (e.g., "Find all houses within 1km of the river").
  • NDVI (Normalized Difference Vegetation Index) — A calculation used to determine how "green" or "healthy" plants are from space.

Understanding

GIS and Remote Sensing are understood through Layering and Signature.

1. The Power of the Stack (GIS): A map is no longer just a drawing. It is a Database.

  • You can stack a "Population" layer on a "Flood Risk" layer.
  • The GIS can then "Calculate" exactly how many people are in danger.

This is called Spatial Analysis.

2. Seeing the Invisible (Remote Sensing): Satellites don't just take "Photos." They measure energy.

  • Infrared: Healthy plants reflect a lot of infrared light. Satellites can see "Crop Health" before a human farmer even notices a problem.
  • Thermal: Detecting heat to find forest fires through thick smoke.
  • Radar: Seeing through clouds or even underground.

3. The Spectral Signature: Every object on Earth (water, concrete, corn, oak trees) reflects light differently. This is its "Fingerprint." By analyzing the "Colors" in a satellite image, a computer can automatically map an entire country, identifying every forest and every parking lot without a human ever leaving their desk.

Ground Truthing: Even with the best satellites, you still need to "check your work." This is the process of physically going to a location to verify that what the satellite saw is actually what is on the ground.

Applying

Modeling 'The Buffer Zone' (Spatial Analysis): <syntaxhighlight lang="python"> def is_in_danger_zone(house_coords, river_coords, flood_radius_km):

   """
   A basic GIS 'Buffer' operation.
   """
   import math
   # Euclidean distance
   dist = math.sqrt((house_coords[0]-river_coords[0])**2 + 
                    (house_coords[1]-river_coords[1])**2)
   
   if dist <= flood_radius_km:
       return f"DANGER: House is only {dist:.2f}km from river."
   else:
       return "SAFE: House is outside the flood buffer."
  1. House at (2,2), River at (0,0), 3km Flood Risk

print(is_in_danger_zone((2,2), (0,0), 3))

  1. This logic is used by insurance companies to
  2. calculate your house insurance rates.

</syntaxhighlight>

GIS/RS Landmarks
Google Earth → The first tool to bring satellite remote sensing to the general public.
Landsat → The longest-running satellite program (since 1972) for tracking global land change.
OpenStreetMap → The "Wikipedia of Maps," where millions of volunteers map the world together.
Precision Agriculture → Tractors that use GPS and satellite maps to apply the exact amount of fertilizer to every square inch of a field.

Analyzing

Vector vs. Raster
Feature Vector (Points/Lines) Raster (Pixels)
Data Type Mathematical shapes A grid of numbers
Best For Roads / Boundaries / Addresses Elevation / Satellite photos / Weather
File Size Small Large
Analogy A 'Blue-print' drawing A 'Digital Photo'

The Concept of "Spatial Autocorrelation": This is the first law of geography: "Everything is related to everything else, but near things are more related than distant things." In GIS, this means that if one house is flooded, the one next to it is likely flooded too. Analyzing these "Clusters" is how we find "Cancer Clusters" or "Crime Hotspots."

Evaluating

Evaluating a map or sensor: (1) Accuracy: How close is the "Map point" to the real world (e.g., within 1 meter or 100 meters)? (2) Temporal Resolution: How often does the satellite pass over (once a day or once a month)? (3) Cloud Cover: Is the remote sensing useless in rainy countries? (4) Projection Distortion: Because the Earth is round and maps are flat, every map "stretches" something (Size, Shape, or Distance). Is the map using the "Right" stretch for its goal?

Creating

Future Frontiers: (1) Real-time GIS: Maps that update every second (e.g., tracking 1,000 self-driving cars in a city). (2) Deep Learning Feature Extraction: AI that automatically identifies every house, tree, and swimming pool in a 10-petabyte satellite database. (3) Hyperspectral Imaging: Sensors that see 1,000 colors, allowing us to identify individual species of trees from space. (4) Space-based Internet (Starlink): Using GIS and RS to manage "Megaconstellations" of 40,000 satellites in low Earth orbit.