Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Six domains where GeoAI is already used in production, as inspiration for your own project

1. Why these examples matter

Reading about real, deployed systems is one of the fastest ways to find a project direction. Each example below also gives you a concrete answer to a question you will need for your own project: which of the seven core tasks does this system rely on, and why that one rather than an alternative.


2. Core idea

GeoAI systems tend to cluster around a small number of task types (which you will meet formally on the core tasks page) applied to domain-specific problems. Recognizing the domain-to-task pattern is a useful shortcut when you are scoping your own project.


3. Application domains

Here is a synthesized version that combines the engaging, real-world examples of the second text with the clear, project-oriented structure of the first. I have formatted the research questions as blockquotes to better suit a textbook or documentation layout.

Urban planning and smart cities

Automatically extracting infrastructure and land use from imagery is now common at a global scale; Microsoft’s building footprint dataset and Google’s Open Buildings project both used deep learning to map hundreds of millions of structures. Beyond static mapping, change detection models track urban expansion and informal settlement growth over time, while object detection supports tasks like counting vehicles or estimating parking occupancy.

“Where are buildings, roads, or impervious surfaces visible?” “How has the built-up area changed over time?”

Agriculture and food security

Agricultural applications often use repeated satellite observations to monitor crops. Crop type mapping uses semantic segmentation and classification on time series to identify what is growing in each field. Yield prediction is typically framed as regression, combining vegetation indices, weather, and soil data to forecast harvest outcomes. Furthermore, precision agriculture utilizes imagery to detect within-field variability, targeting water or fertilizer much more precisely than uniform treatments.

“Can crop types be distinguished from seasonal satellite patterns?” “Where does vegetation stress appear within a field or region?”

Environmental monitoring and conservation

Global Forest Watch tracks tree cover loss using machine learning on Landsat imagery, while newer systems fuse Landsat, Sentinel-2, and radar data to flag deforestation within days. Biodiversity monitoring uses similar object detection and classification approaches to count animals in drone imagery or map habitat types. Additionally, climate applications process large volumes of satellite records to quantify glacier retreat or estimate methane emissions from infrastructure.

“Where has forest cover changed?” “Can habitat patterns be mapped from imagery and context data?”

Disaster response and humanitarian mapping

Comparing pre- and post-event imagery with change detection models supports rapid damage assessment after earthquakes or hurricanes. The xBD dataset, one of the largest public datasets for this task, covers over 850,000 building annotations across 19 disaster events. SAR imagery, which can see through clouds, is commonly used for near real-time flood mapping, as optical sensors are often blocked by storm systems exactly when data is most needed.

“Where is flood extent visible after an event?” “Which buildings may have changed or been damaged?”

Water resources management

Deep learning models now support streamflow prediction and flood forecasting, in some cases reaching several days of useful lead time even in ungauged watersheds. Regression models estimate water quality parameters, such as chlorophyll concentration, directly from imagery. Combined approaches also integrate satellite gravity measurements with land surface data to track groundwater storage changes.

“Where has surface water expanded or contracted?” “Can satellite imagery estimate a specific water-quality indicator?”

Public health and environmental exposure

Vector-borne disease models combine satellite-derived environmental variables—like temperature, standing water, and vegetation—with case data to flag high-risk areas. Satellite-derived PM2.5 datasets are actively used to estimate global air-pollution exposure. Furthermore, foundation-model pipelines that fuse atmospheric and Earth observation data can now produce fine-resolution urban heat maps for exposure assessment.

“Where are urban heat patterns strongest?” “Which neighbourhoods are disproportionately exposed to environmental stressors?”


4. Workflow

Use applications as models for project design.

Step A: Identify the problem type

Ask whether the application is mainly about mapping, detecting, counting, comparing, predicting or monitoring.

Step B: Identify the spatial evidence

Ask what data provide evidence. Is the key information in imagery, time series, vector layers, field labels, sensors or a combination?

Step C: Identify the task type

Translate the problem into a task: classification, detection, segmentation, change detection, regression or embedding-based exploration.

Step D: Identify the output

Name the final output. A project becomes clearer when you can name the map, figure, metric or table you want to produce.

Step E: Identify the limitation

Every application has limitations. Look for issues such as resolution, incomplete labels, clouds, sensor differences, spatial bias, uncertainty or ethical concerns.


5. Python reactivation

No new Python here. This is a good moment to reactivate a slightly different skill: skimming source material for the specific detail you need (which dataset, which task, which scale) rather than reading start to finish. You will do the same thing on L02 – Data acquisition when comparing candidate data sources.


6. Common pitfalls


7. Mini task

Pick two of the six domains above. For each, name the specific product or dataset mentioned and identify which core task type it most likely relies on (you will formally meet all seven task types on the next page, so a reasonable guess based on the description is fine here).


8. Further reading


9. Key takeaways