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.

Turning a project idea into concrete data search criteria

1. Why data search matters

Before you download anything, you need to know what kind of data would actually support your project.

A strong SDS320 project does not start with a random dataset. It starts with a question, then searches for data that can answer it. This page helps you translate your project idea into search criteria and a first data inventory.

In the next page, you will apply these ideas to remote sensing data and STAC search workflows.


2. Core idea

Data search is a filtering process.

You begin with many possible datasets and gradually reduce them using project criteria:

Research question
→ study area
→ time period
→ data type
→ resolution
→ quality
→ licence
→ access route
→ file size
→ project fit

The output of this page is not a finished dataset. It is a reasoned shortlist of candidate data sources.


3. Workflow

Step 1: Start from the project question

Write down what your data must show.

Examples:

I need imagery where individual buildings are visible.
I need repeated observations before and after a flood event.
I need land-cover information for a defined city region.

This step matters because different questions need different data. Object-level questions may need high-resolution imagery. Long-term change questions may need a long time series. Context questions may need vector data such as roads, buildings, administrative areas or land use.


Step 2: Define area and time

Most spatial data portals allow filtering by space and time.

Define:

Study area:
Time period:
Season or date constraints:
Minimum useful spatial resolution:

For many web services, the first spatial filter is a Bounding Box.

Example:

bbox = [min_lon, min_lat, max_lon, max_lat]

Step 3: Decide what data type you need

Most SDS320 projects use a combination of Raster Data and vector data.

Data needTypical data type
Satellite or aerial imageryRaster
Elevation, temperature, indicesRaster
Buildings, roads, boundariesVector
Training labels or masksVector or raster
Validation samplesVector, raster or table
Context informationVector or raster

The type of data affects your workflow, file structure and preprocessing needs.


Step 4: Check suitability

Before downloading large files, inspect the metadata or preview where possible.

Check:

A dataset can be open and still not suitable for your project.


Step 5: Create a data inventory

A data inventory is a table that records candidate datasets and why they may or may not fit.

Use this structure:

Dataset:
Provider:
Data type:
Study area fit:
Time period fit:
Resolution:
Format:
Access route:
Licence:
Main use in project:
Main limitation:
Decision:

You can keep this in a Markdown file, spreadsheet or notebook table. The important part is that the reasoning is visible.


4. Python reactivation

A small project data inventory can be represented as a list of dictionaries and converted to a table.

import pandas as pd

data_sources = [
    {
        "dataset": "Sentinel-2 Level-2A",
        "provider": "Planetary Computer / ESA",
        "data_type": "raster",
        "main_use": "multispectral imagery",
        "main_limitation": "cloud cover and 10 m resolution",
        "decision": "candidate",
    },
    {
        "dataset": "Overture Maps buildings",
        "provider": "Overture Maps",
        "data_type": "vector",
        "main_use": "building context or labels",
        "main_limitation": "quality varies by area",
        "decision": "check locally",
    },
]

inventory = pd.DataFrame(data_sources)
inventory

This is not yet data acquisition code. It is project thinking in a structured format.


5. Common pitfalls

PitfallHow to avoid it
Starting with a dataset but no questionWrite what the data should help you answer.
Downloading too much too earlyTest one small area or item first.
Ignoring licence informationRecord reuse conditions before using the data.
Confusing availability with suitabilityCheck resolution, time period, quality and format.
Forgetting vector context dataConsider buildings, roads, boundaries or land-use data where relevant.
Not recording failed searchesDocument why a dataset was rejected.

6. Mini task

Create a first data inventory for your project.

Include at least:


7. Key takeaways