Lecture Note
University
University of California San DiegoCourse
DSC 207R | Python for Data SciencePages
2
Academic year
2023
anon
Views
28
Satellite Image Example WIFIRE: An Integrated System for Wildfire Analysis Wildfires can cause significant damage to property and the environment. To avoid the loss ofwealth and life, it is crucial to find them as soon as possible. Satellite picture data is one ofthe best resources for forecasting the spread of wildfires. In this article, we will analyze asample satellite image data set from one of our research projects called WIFIRE and use thenumpy library in this analysis. WIFIRE is an integrated system for wildfire analysis that iscapable of handling changing urban dynamics and climate. The system integrates networkedobservations from a variety of sources, including heterogeneous satellite data and real-timeremote sensor data. It then processes all this data using computational techniques in signalprocessing, visualization, predictive fire modeling, and data assimilation in a scalable way.The end result is a system that can track weather patterns and other variables to gauge howquickly a wildfire will spread. You can read more about WIFIRE at wifire.ucsd.edu. Understanding Satellite Image Data Before we dive deeper into WIFIRE, let's first understand what satellite image data is andhow it helps in fighting wildfires. Simply put, satellite image data is the image of the earth'ssurface taken from a satellite orbiting the earth. These images are usually in the form ofmaps, photos, or satellite imagery. In the context of WIFIRE, these images are used tomonitor weather patterns, terrain, vegetation, and other factors that can contribute to thespread of wildfires. How Computers Store Images Now that we know what satellite image data is let's understand how computers store images.Computers store images as a mosaic of tiny squares, and each square is called a pixel.Each pixel is only one color, defined by a set of numbers. A simple way to describe eachpixel is using a combination of three colors, namely red, green, and blue. This is what we callan RGB image. In an RGB image, each pixel is represented by three 8-bit numbersassociated with the values for red, green, and blue, respectively. The combination of thesethree will, in turn, give us a specific shade of the pixel color. Since each number is an 8-bitnumber, the values range from 0 to 255. For example, a yellow value can be identified by255, 255, and 0 for RGB, as we see in this diagram. If all three values are at full intensity,that means they are 255, it shows as white. If all three colors are muted or have the value of0, the color shows as black. Since each value can have 256 different intensity or brightnessvalues, it makes 16.8 million total shades. In Python, RGB images are ndarrays of shapeheight times width times three for each RGB layer.
Image Processing in Python Now that we have a basic background in how color images are stored in Python, let's look athow we can use WIFIRE to analyze satellite image data. We will mainly use numpyfunctions, filtering techniques, and some domain-specific knowledge to analyze the imagedata. Numpy is a powerful library for numerical computations in Python, and it provides ahost of functions for image processing. The Notebook We'll go over a notebook that makes use of a satellite image from landfire.gov that may beused to analyze the Earth's surface in this lesson. Every Earth science application willfrequently contain a study of visual graphs, whether they be maps, photographs, or satelliteimagery like this one. A type of image processing will also be used in numerous other datascience applications. We need to have a basic knowledge of image formats and how to workwith images in Python to get started in this vast
Satellite Image Example
Please or to post comments