Geographic Information Systems

Geographic Information Systems: Mapping the World

Geographic Information System is a tool for capturing, analyzing, and visualizing spatial data. It integrates various data types on map and examine geographic relationships, aiding urban planning, environmental management, and resource allocation. Its applications span diverse fields, enhancing decision-making.

Geographic Information Systems

Overview

Geographic Information Systems (GIS) have emerged as indispensable tools in the modern era, revolutionizing the way we collect, analyze, and interpret spatial data. From urban planning and environmental management to disaster response and public health, GIS plays a crucial role in diverse fields. This article by Academic Block covers the intricacies of GIS, exploring its components, applications, and the transformative impact it has had on various sectors.

Understanding GIS: Foundations and Components

A. Definition and Core Concepts

Geographic Information Systems, commonly known as GIS, refer to a set of tools and technologies designed to capture, store, analyze, manage, and present spatial or geographical data. At its core, GIS integrates various data types to create meaningful maps and visualizations, enabling users to gain insights into spatial patterns, relationships, and trends.

1. Spatial Data

Spatial data forms the foundation of GIS, representing information tied to a specific location on the Earth’s surface. This includes geographical features such as points, lines, and polygons, along with attributes that provide additional information about these features.

2. Components of GIS

GIS comprises hardware, software, data, and people. The hardware includes computers, GPS devices, and other peripherals, while software encompasses GIS applications for data processing and analysis. Data, both spatial and attribute, is crucial for GIS operations, and skilled individuals are essential for interpreting and utilizing GIS outputs effectively.

B. GIS Data Models

GIS utilizes various data models to represent and organize spatial information. Two primary models are the vector model and the raster model.

1. Vector Data Model

Vector data represents geographic features as points, lines, and polygons. Points correspond to specific locations, lines represent linear features, and polygons define areas. This model is suitable for representing discrete, well-defined features.

2. Raster Data Model

Raster data divides the Earth’s surface into a grid of cells or pixels, where each cell contains information about a specific location. This model is ideal for continuous phenomena, such as elevation or temperature, and is commonly used in satellite imagery.

C.GIS Technologies and Tools

GIS Software

Various GIS software applications are available, catering to different needs and levels of expertise. Some widely used GIS software includes:

1. ArcGIS

Developed by Esri, ArcGIS is one of the most popular GIS platforms, offering a comprehensive suite of tools for mapping, spatial analysis, and data visualization. It is widely used across various industries, including government, academia, and private sectors.

2. QGIS

Quantum GIS (QGIS) is an open-source GIS software that provides a user-friendly interface and a wide range of features for mapping and spatial analysis. It is a cost-effective alternative for users with budget constraints.

Remote Sensing

Remote sensing involves the collection of data from a distance, typically through satellite or aerial imagery. This data is then used in GIS to analyze changes in the Earth’s surface, monitor vegetation health, and assess environmental conditions.

1. Satellite Imagery

Satellite imagery provides a valuable source of spatial data for GIS applications. High-resolution satellite images are used for tasks such as land cover classification, change detection, and monitoring natural disasters.

2. Unmanned Aerial Vehicles (UAVs)

UAVs, commonly known as drones, are increasingly used for collecting high-resolution aerial imagery. They offer flexibility and accessibility, making them valuable for mapping terrain, monitoring infrastructure, and conducting surveys.

Global Positioning System (GPS)

The Global Positioning System (GPS) is a satellite-based navigation system that allows users to determine their precise location on the Earth’s surface. GPS data is integrated into GIS for accurate mapping, asset tracking, and field data collection.

1. Field Data Collection

GIS field data collection involves using GPS-enabled devices to gather spatial information directly in the field. This data can include location coordinates, attribute information, and multimedia files, providing real-time updates to the GIS database.

2. Geocoding

Geocoding is the process of converting addresses or place names into geographic coordinates. This allows for the accurate placement of locations on a map, enhancing the spatial analysis capabilities of GIS.

IV. Mathematics behind the Geographic Information Systems

1. Coordinate Systems:

    • Cartesian Coordinates: Most GIS data is represented using Cartesian coordinates, where locations on the Earth’s surface are expressed as (x, y) pairs. These coordinates can be in 2D (latitude and longitude) or 3D (including elevation).
    • Geodetic Coordinates: Earth is not a perfect sphere, so geodetic coordinates, expressed in latitude, longitude, and altitude, are used to represent locations more accurately. These coordinates use spherical or ellipsoidal models of the Earth.
    • Latitude (Φ): The angle measured north or south from the equator (ranging from -90° to +90°).
    • Longitude (λ): The angle measured east or west from the prime meridian (ranging from -180° to +180° or 0° to 360°).

2. Projections:

    • Map Projections: GIS often involves transforming the Earth’s 3D surface onto a 2D map. Map projections use mathematical formulas to convert spherical or ellipsoidal coordinates to flat, 2D coordinates. Common projections include Mercator, Lambert Conformal Conic, and Albers Equal Area.

    • Mercator Projection Equations:

      x = R⋅λ ;

      y = R⋅ln⁡[tan⁡{ (π / 4) + (ϕ / 2}] ;

      Note: Mercator preserves angles, making it suitable for navigation, but it distorts area, especially near the poles.

    • Cylindrical Equal Area Projection (Lambert Cylindrical Equal Area):

      x = R⋅λ ;

      y = R⋅sin⁡(ϕ) ;

      Notes: Preserves areas, making it suitable for thematic maps that require accurate representation of relative sizes.

    • Conic Projection (Albers Equal Area):

      • x = R⋅cos⁡(ϕ)⋅sin⁡(λ − λ0) ;
      • y = R⋅(cot⁡(ϕ1/2) − cot⁡(ϕ2/2)) + y0 ;

      Note: Balances distortions across properties like area, shape, and distance for specific regions.

    • Azimuthal Projection (Orthographic):

      • x = R⋅cos⁡(ϕ)⋅sin⁡(λ − λ0) ;
      • y = R⋅cos⁡(ϕ)⋅cos⁡(λ − λ0) ;

      Note:Preserves distances from the center point but distorts shapes away from the center.

      Terms used in the above Equations:

R: Earth’s radius.

λ: Longitude.

ϕ: Latitude.

λ0: Central meridian (for conic and cylindrical projections).

ϕ1, ϕ2: Standard parallels (for conic projections).

y0: False northing (an offset to ensure positive values).

3. Distance and Area Calculations:

      • Euclidean Distance: In flat, 2D space, the Euclidean distance between two points (x₁, y₁) and (x₂, y₂) is calculated using the distance formula:

Distance = sqrt [ (x2−x1)2 + (y2−y1)2 ] ;

      • Great Circle Distance: On a sphere, distances are calculated along the surface using the great-circle distance formula, which considers the curvature of the Earth.

Distance = R × Q ;

Q = ArcCos(sin⁡(Lat1) × sin⁡(Lat2) + cos⁡(Lat1) × cos⁡(Lat2) × cos⁡(Long2 − Long1)) ;

    • Area Calculation: Calculating the area of a polygon on a flat surface involves algorithms like the shoelace formula. For areas on the Earth’s surface, more complex formulas accounting for the curvature of the Earth are used.

4. Spatial Analysis:

    • Overlay Analysis: GIS often involves overlaying different layers of spatial data. Boolean operations, such as AND, OR, and NOT, are used to combine or extract information from different layers.
    • Buffering: Creating buffers around points, lines, or polygons involves calculating the area within a specified distance from the input geometry.

5. Interpolation:

    • Spatial Interpolation: For estimating values at unsampled locations based on sampled points, various interpolation methods are used. Common methods include inverse distance weighting (IDW) and kriging.

6. Network Analysis:

    • Shortest Path Algorithms: For finding the shortest path between two locations in a network (e.g., road network), algorithms like Dijkstra’s or A* are employed.

7. Remote Sensing Equations:

    • Radiative Transfer Equations: Remote sensing involves the analysis of electromagnetic radiation. Radiative transfer equations model the interaction of light with Earth’s atmosphere, surface, and any intervening objects.

These are just a few examples of the mathematical principles that underlie GIS. Depending on the specific GIS application and analysis, more advanced mathematical techniques and algorithms may be employed. The integration of GIS with statistical methods, machine learning, and optimization algorithms further expands the mathematical foundations of geospatial analysis.

V. Challenges and Future Trends in GIS

A. Data Quality and Integration

One of the significant challenges in GIS is ensuring the quality and compatibility of spatial data. Integrating data from various sources with different formats and standards can lead to inconsistencies, requiring careful data cleaning and validation processes.

B. Privacy and Ethical Considerations

As GIS technology advances, concerns about privacy and ethical use of location data become increasingly important. Striking a balance between leveraging GIS for societal benefits and safeguarding individual privacy is a complex challenge.

C. Artificial Intelligence and Machine Learning Integration

The integration of artificial intelligence (AI) and machine learning (ML) into GIS is a rapidly evolving trend. These technologies enhance the capabilities of GIS by automating processes, improving predictive modeling, and enabling more advanced spatial analysis.

D. Cloud-Based GIS

Cloud-based GIS solutions are gaining popularity, offering scalability, accessibility, and collaboration features. Cloud platforms allow users to store and analyze large datasets, share maps online, and collaborate in real-time, reducing the need for extensive local infrastructure.

E. Augmented and Virtual Reality in GIS

The integration of augmented reality (AR) and virtual reality (VR) into GIS applications provides immersive experiences for users. This technology has the potential to revolutionize spatial data visualization, analysis, and decision-making processes.

Final Words

Geographic Information Systems have evolved from niche technologies to indispensable tools with widespread applications across diverse fields. The ability to capture, analyze, and visualize spatial data has transformed how we understand and interact with the world around us. From urban planning and environmental management to emergency response and public health, GIS continues to play a pivotal role in shaping a sustainable and resilient future.

In this article by Academic Block, we have seen that, as the technology advances, the integration of GIS with artificial intelligence, cloud computing, and immersive technologies opens new possibilities for innovation and efficiency. However, addressing challenges related to data quality, privacy, and ethical considerations remains crucial to ensuring the responsible and equitable use of GIS. Please provide your comments below, it will help us in improving this article. Thanks for reading!

This Article will answer your questions like:

+ What is a Geographic Information System (GIS)? >

A Geographic Information System (GIS) is a technology framework for capturing, storing, analyzing, and visualizing spatial and geographic data. GIS integrates various data types to produce maps and reports, allowing users to interpret, manage, and analyze geographical information. It supports decision-making across multiple sectors by revealing spatial patterns and relationships, and it is essential in fields such as urban planning, environmental management, transportation, and resource management.

+ How does a GIS work? >

A GIS works by combining spatial data (maps, satellite images) and attribute data (information about locations) within a database. It uses software tools to perform spatial analysis, manage spatial databases, and create maps. Data is input into the system, processed through various analytical methods, and visualized in the form of maps and reports. This process helps users understand spatial relationships and patterns, supporting data-driven decision-making.

+ What are the primary components of a GIS? >

The primary components of a GIS include hardware (computers, GPS devices), software (GIS applications), data (spatial and attribute data), methods (data analysis and management procedures), and people (trained personnel). Hardware provides the physical tools for data input and analysis. Software enables data manipulation and visualization. Data serves as the foundation, methods guide the analysis, and people interpret and apply the results to real-world scenarios.

+ What types of data are used in GIS? >

GIS uses two main types of data: spatial data and attribute data. Spatial data, or geospatial data, represents the location and shape of physical features on the Earth's surface, including vector data (points, lines, polygons) and raster data (grid-based, such as satellite imagery). Attribute data provides descriptive information about spatial features, such as population, land use, and environmental conditions. Both data types are integrated for comprehensive spatial analysis.

+ How is spatial data collected and processed in GIS? >

Spatial data is collected through various methods, including satellite imagery, aerial photography, GPS surveys, and remote sensing technologies. This data is processed using GIS software, which involves steps such as data cleaning, georeferencing, digitization, and layer integration. Georeferencing aligns spatial data to a known coordinate system. Digitization converts physical maps into digital formats, and layer integration combines multiple data layers for comprehensive analysis and visualization.

+ What are the main applications of GIS in various industries? >

GIS has diverse applications across industries, including urban planning (zoning, infrastructure development), environmental management (habitat conservation, pollution tracking), agriculture (crop monitoring, soil analysis), transportation (route optimization, traffic management), and public health (disease tracking, resource allocation). It supports disaster management, real estate, forestry, and utilities by providing spatial insights that inform strategic planning, operational efficiency, and resource management.

+ How does GIS benefit urban planning and development? >

GIS benefits urban planning and development by providing tools for analyzing spatial data and visualizing development scenarios. It helps planners assess land use patterns, infrastructure needs, and environmental impacts. GIS supports zoning decisions, transportation planning, and public service delivery by integrating demographic, economic, and environmental data. This facilitates sustainable development, efficient resource allocation, and improved quality of life in urban areas.

+ What role does GIS play in environmental management and conservation? >

GIS plays a crucial role in environmental management and conservation by enabling the analysis and visualization of ecological data. It helps monitor natural resources, track pollution, and assess habitat conditions. GIS supports biodiversity conservation by identifying critical habitats and migration corridors. It aids in environmental impact assessments and planning conservation strategies, facilitating informed decision-making for sustainable resource management and ecosystem preservation.

+ How can GIS be used in disaster management and emergency response? >

GIS is vital in disaster management and emergency response by providing spatial analysis and real-time data visualization. It helps in risk assessment, hazard mapping, and resource allocation. During emergencies, GIS facilitates the tracking of incidents, coordination of response efforts, and routing of evacuation plans. It supports post-disaster recovery by analyzing damage, assessing impacts, and planning reconstruction. GIS enhances preparedness and resilience by integrating historical data and predictive models.

+ What are the advantages of using GIS over traditional mapping techniques? >

GIS offers several advantages over traditional mapping techniques, including dynamic data integration, spatial analysis capabilities, and interactive visualization. Unlike static maps, GIS can handle large datasets, update information in real-time, and perform complex spatial queries. It allows for multi-layered mapping, enabling users to analyze relationships between different data sets. GIS enhances decision-making by providing accurate, up-to-date, and detailed geographic information.

+ What are the challenges and limitations of GIS technology? >

Challenges and limitations of GIS technology include high costs of implementation and maintenance, the need for specialized training and expertise, and data accuracy issues. Integrating and standardizing data from various sources can be complex. Additionally, GIS systems can be computationally intensive, requiring robust hardware and software. Data privacy and security concerns also pose challenges, especially when dealing with sensitive information.

+ What recent advancements have been made in GIS software and hardware? >

Recent advancements in GIS software and hardware include the development of cloud-based GIS platforms, enhancing data accessibility and collaboration. Real-time data integration and processing capabilities have improved, driven by advancements in IoT and big data analytics. Enhanced visualization tools, such as 3D mapping and augmented reality, provide more immersive analysis. Additionally, machine learning algorithms are increasingly used for predictive modeling and spatial analysis, further expanding GIS applications.

Hardware and software required for Geographic Information Systems

Hardware:

  1. High Performance Computers:
    • Workstations computers are often used for GIS tasks, especially for complex spatial analyses and large dataset processing.

Softwares:

  1. GIS Software:
    • ArcGIS: Developed by Esri, ArcGIS is one of the most widely used GIS software suites, offering tools for mapping, spatial analysis, and data management.
    • QGIS: QGIS is a open-source GIS software with a user-friendly interface and a broad set of features.
    • GRASS GIS: GRASS GIS is a another open-source GIS software with a focus on geospatial data analysis and modeling.
  2. Database Management Systems (DBMS):
    • PostgreSQL with PostGIS: A popular open-source DBMS with a spatial extension (PostGIS) for handling spatial data.
    • Oracle Spatial: A spatial extension for the Oracle Database for managing and analyzing spatial information.
  3. Remote Sensing Software:
    • ENVI: Used for analyzing and processing remote sensing data.
    • Erdas IMAGINE: A comprehensive remote sensing application for raster data analysis.
  4. Mapping and Visualization Tools:
    • Carto: An online platform for mapping and visualization.
    • Mapbox: Offers tools for creating custom maps and integrating them into applications.
  5. Programming Languages:
    • Python: Widely used for scripting and automating GIS tasks. Libraries like GDAL, Fiona, and Shapely are commonly used.
    • R: Used for statistical analysis and visualization, often integrated with GIS workflows.
  6. CAD Software:
    • AutoCAD: Used for creating and editing spatial data, especially in engineering and architecture.
  7. Web GIS Platforms:
    • ArcGIS Online: Esri’s cloud-based platform for creating, sharing, and managing GIS content.
    • Google Earth Engine: A platform for planetary-scale environmental data analysis.
  8. Mobile GIS Apps:
    • Collector for ArcGIS: Facilitates field data collection using mobile devices.
    • QField for QGIS: Allows field mapping with QGIS projects on Android devices.

Applications of Geographic Information Systems

A. Urban Planning and Development: GIS has become an integral tool in urban planning and development, aiding in land-use planning, infrastructure management, and decision-making processes. By analyzing spatial data, urban planners can optimize city layouts, identify suitable locations for new developments, and assess the impact of proposed projects on the existing infrastructure.

  1. Zoning and Land Use Planning: GIS enables the creation of detailed zoning maps, helping municipalities regulate land use and allocate space for residential, commercial, and industrial purposes. This ensures sustainable development and efficient use of available resources.
  1. Transportation Planning: GIS is instrumental in optimizing transportation networks by analyzing traffic patterns, identifying congestion points, and planning the most efficient routes. This contributes to the development of smart cities with streamlined and well-connected transportation systems.

B. Environmental Management and Conservation: GIS plays a vital role in environmental management, providing tools for monitoring, analyzing, and mitigating the impact of human activities on natural ecosystems. It aids in biodiversity conservation, natural resource management, and the assessment of environmental hazards.

  1. Ecosystem Mapping and Monitoring: GIS allows for the mapping and monitoring of ecosystems, helping conservationists track changes in land cover, identify habitat loss, and assess the health of ecosystems. This information is crucial for implementing effective conservation strategies.
  1. Climate Change Analysis: GIS is employed to analyze and model the impacts of climate change, including rising sea levels, changes in temperature patterns, and extreme weather events. This information assists policymakers in developing adaptive strategies to address the challenges posed by a changing climate.

C. Emergency Response and Disaster Management: GIS is a critical tool in emergency response and disaster management, facilitating real-time data collection, analysis, and decision-making during crises. It helps authorities plan evacuation routes, assess the extent of damage, and coordinate rescue efforts.

  1. Disaster Preparedness: GIS aids in the identification of high-risk areas susceptible to natural disasters such as floods, earthquakes, or wildfires. By mapping vulnerable zones, emergency responders can develop proactive strategies to mitigate the impact of disasters and enhance community resilience.
  1. Crisis Mapping: During and after disasters, GIS is used for crisis mapping, providing real-time information on affected areas, infrastructure damage, and the distribution of resources. This assists in coordinating relief efforts and allocating resources efficiently.

D. Public Health and Epidemiology: GIS has found applications in public health by providing tools for spatial analysis of diseases, healthcare resource allocation, and epidemiological studies. This is particularly relevant in understanding the spread of infectious diseases and planning effective healthcare interventions.

  1. Disease Mapping: GIS enables the mapping of disease patterns, helping health authorities identify hotspots, track the spread of infections, and implement targeted interventions. This is crucial for controlling the transmission of diseases such as malaria, Zika virus, or COVID-19.
  1. Healthcare Facility Planning: GIS is used to optimize the location of healthcare facilities, ensuring equitable access to medical services. By analyzing population density, demographics, and transportation networks, planners can identify areas underserved by healthcare and propose new facility locations.

Key figure in Geographic Information Systems

The title “father of Geographic Information Systems” is often attributed to Roger Tomlinson. Roger Tomlinson, a Canadian geographer, is recognized for his pioneering work in the development of GIS during the 1960s. He is credited with creating the first computerized GIS for the Canadian government in the early 1960s, making significant contributions to the conceptualization and implementation of GIS as a tool for spatial analysis and decision-making. Tomlinson’s work laid the foundation for the widespread adoption and evolution of GIS in various fields, making him a key figure in the history of geospatial technology.

Facts on Geographic Information Systems

Origins of GIS: The concept of Geographic Information Systems (GIS) originated in the early 1960s. Roger Tomlinson, often referred to as the “father of GIS,” developed the first computerized GIS for the Canadian government in 1963.

Integration of Spatial and Attribute Data: GIS integrates spatial data (geographic location) with attribute data (information about the location), allowing for comprehensive analysis and visualization.

Components of GIS: GIS consists of hardware, software, data, and people. The hardware includes computers and peripherals, while the software involves GIS applications and tools. Spatial and attribute data are fundamental, and skilled individuals interpret and use GIS outputs.

Spatial Data Models: Vector and raster are the two primary spatial data models in GIS. Vector data represents features using points, lines, and polygons, while raster data uses a grid of cells to represent information.

Coordinate Systems: GIS uses different coordinate systems to represent locations on the Earth’s surface. Common systems include Cartesian coordinates (x, y), geodetic coordinates (latitude, longitude, altitude), and projected coordinate systems.

Map Projections: Map projections are mathematical transformations used to represent the Earth’s curved surface on flat maps. Different projections serve various purposes, and each introduces distortions in shape, area, distance, or direction.

Remote Sensing in GIS: Remote sensing involves collecting data from a distance, often using satellites or aerial platforms. GIS incorporates remote sensing data for applications such as land cover classification, change detection, and environmental monitoring.

GIS and GPS: Global Positioning System (GPS) technology, consisting of a network of satellites, provides accurate location information. GIS often integrates GPS data for real-time location tracking and field data collection.

Spatial Analysis in GIS: GIS enables various spatial analyses, including overlay analysis, buffer creation, spatial interpolation, and network analysis. These tools help identify patterns, relationships, and trends in spatial data.

Web GIS: Web GIS allows users to access and interact with geographic information through web browsers. Platforms like ArcGIS Online and Google Maps provide web-based mapping and spatial analysis capabilities.

GIS in Environmental Management: GIS is widely used in environmental management for tasks such as ecosystem mapping, climate change analysis, and natural resource monitoring. It aids in sustainable decision-making and conservation efforts.

GIS in Urban Planning: Urban planners use GIS for zoning and land use planning, transportation optimization, and infrastructure development. GIS helps create sustainable and well-connected urban environments.

GIS in Health: GIS plays a crucial role in public health, allowing for disease mapping, healthcare facility planning, and epidemiological studies. It aids in understanding the spatial distribution of health-related issues.

Challenges in GIS: Challenges in GIS include data quality issues, privacy concerns, and the need for standardization. Integrating data from various sources with different formats and standards can be complex.

Academic References on Geographic Information Systems

Books:

  1. Longley, P. A., Goodchild, M. F., Maguire, D. J., & Rhind, D. W. (2015). Geographic Information Science and Systems. John Wiley & Sons.
  2. Heywood, I., Cornelius, S., & Carver, S. (2011). An Introduction to Geographical Information Systems. Pearson.
  3. Burrough, P. A., & McDonnell, R. A. (2015). Principles of Geographical Information Systems. Oxford University Press.
  4. de Smith, M. J., Goodchild, M. F., & Longley, P. A. (2018). Geospatial Analysis: A Comprehensive Guide. Troubador Publishing Ltd.
  5. O’Sullivan, D., & Unwin, D. J. (2014). Geographic Information Analysis. John Wiley & Sons.
  6. Mitchell, A. (2005). The ESRI Guide to GIS Analysis, Volume 1: Geographic Patterns & Relationships. Esri Press.
  7. Aronoff, S. (2013). Remote Sensing for GIS Managers. Esri Press.
  8. Arefi, M. F. (2015). GIS Applications in Agriculture: Nutrient Management for Energy Efficiency. CRC Press.

Journal Articles:

  1. Goodchild, M. F. (2007). Citizens as Sensors: The World of Volunteered Geography. GeoJournal, 69(4), 211-221.
  2. Kwan, M. P. (2002). Feminist Visualization: Re-envisioning GIS as a Method in Feminist Geographic Research. Annals of the Association of American Geographers, 92(4), 645-661.
  3. Openshaw, S. (1984). The Modifiable Areal Unit Problem. Concepts and Techniques in Modern Geography (CATMOG), 38.
  4. Anselin, L. (1995). Local Indicators of Spatial Association—LISA. Geographical Analysis, 27(2), 93-115.
  5. Li, X., & Zhou, Y. (2018). Deep Learning for Remote Sensing Data: A Technical Tutorial on the State of the Art. IEEE Geoscience and Remote Sensing Magazine, 6(3), 22-40.
  6. Hay, G. J., & Castilla, G. (2006). Geographic Object-Based Image Analysis (GEOBIA): A New Name for a New Discipline. Object-Based Image Analysis, 197-208.
  7. Narayan, U., Lakshmi, V., & Njoku, E. G. (2004). Retrieval of soil moisture from passive and active L/S band sensor (PALS) observations during the Soil Moisture Experiment in 2002 (SMEX02). Remote Sensing of Environment, 92(4), 483-496.
  8. Narayan, U., Lakshmi, V., & Jackson, T. J. (2006). High-resolution change estimation of soil moisture using L-band radiometer and radar observations made during the SMEX02 experiments. IEEE Transactions on Geoscience and Remote Sensing, 44(6), 1545-1554.
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x