Editing
GIS and Remote Sensing
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} 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. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''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. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == 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. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''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." # House at (2,2), River at (0,0), 3km Flood Risk print(is_in_danger_zone((2,2), (0,0), 3)) # This logic is used by insurance companies to # 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. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ 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." </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == 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? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == 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. [[Category:Geography]] [[Category:Computer Science]] [[Category:Environmental Science]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information