Skip to main content

Creating maps with machine learning models and earth observation data.

Project description

OpenMapFlow 🌍

CI Status tb1 db1 tb2 db2 tb3 db3

Rapid map creation with machine learning and earth observation data.

Example projects: Cropland, Buildings, Maize

Example maps: Earth Engine script

Tutorial cb

Colab notebook tutorial demonstrating data exploration, model training, and inference over small region. (video)

Prerequisites:

Creating a map from scratch

To create your own maps with OpenMapFlow, you need to

  1. Generate your own OpenMapFlow project, this will allow you to:
  2. Add your own labeled data
  3. Train a model using that labeled data, and
  4. Create a map using the trained model.

openmapflow-pipeline

Generating a project cb

A project can be generated by either following the below documentation OR running the above Colab notebook.

Prerequisites:

Once all prerequisites are satisfied, inside your Github repository run:

pip install openmapflow
openmapflow generate

The command will prompt for project configuration such as project name and Google Cloud Project ID. Several prompts will have defaults shown in square brackets. These will be used if nothing is entered.

After all configuration is set, the following project structure will be generated:

<YOUR PROJECT NAME>
│   README.md
│   datasets.py             # Dataset definitions (how labels should be processed)
│   evaluate.py             # Template script for evaluating a model
│   openmapflow.yaml        # Project configuration file
│   train.py                # Template script for training a model
│   
└─── .dvc/                  # https://dvc.org/doc/user-guide/what-is-dvc
│       
└─── .github
│   │
│   └─── workflows          # Github actions
│       │   deploy.yaml     # Automated Google Cloud deployment of trained models
│       │   test.yaml       # Automated integration tests of labeled data
│       
└─── data
    │   raw_labels/                     # User added labels
    │   datasets/                       # ML ready datasets (labels + earth observation data)
    │   models/                         # Models trained using datasets
    |   raw_labels.dvc                  # Reference to a version of raw_labels/
    |   datasets.dvc                    # Reference to a version of datasets/
    │   models.dvc                      # Reference to a version of models/
    

Github Actions Secrets Being able to pull and deploy data inside Github Actions requires access to Google Cloud. To allow the Github action to access Google Cloud, add a new repository secret (instructions).

  • In step 5 of the instructions, name the secret: GCP_SA_KEY
  • In step 6, enter your Google Cloud Service Account Key

After this the Github actions should successfully run.

GCloud Bucket: A Google Cloud bucket must be created for the labeled earth observation files. Assuming gcloud is installed run:

gcloud auth login
gsutil mb -l <YOUR_OPENMAPFLOW_YAML_GCLOUD_LOCATION> gs://<YOUR_OPENMAPFLOW_YAML_BUCKET_LABELED_EO>

Adding data

Adding already existing data

Prerequisites:

Add reference to already existing dataset in your datasets.py:

from openmapflow.datasets import GeowikiLandcover2017, TogoCrop2019

datasets = [GeowikiLandcover2017(), TogoCrop2019()]

Download and push datasets

openmapflow create-datasets # Download datasets
dvc commit && dvc push      # Push data to version control

git add .
git commit -m'Created new dataset'
git push

Adding custom data cb

Data can be added by either following the below documentation OR running the above Colab notebook.

Prerequisites:

  1. Pull the latest data
dvc pull
  1. Move raw label files into project's data/raw_labels folder
  2. Write a LabeledDataset class in datasets.py with a load_labels function that converts raw labels to a standard format, example:
label_col = "is_crop"

class TogoCrop2019(LabeledDataset):
    def load_labels(self) -> pd.DataFrame:
        # Read in raw label file
        df = pd.read_csv(PROJECT_ROOT / DataPaths.RAW_LABELS / "Togo_2019.csv")

        # Rename coordinate columns to be used for getting Earth observation data
        df.rename(columns={"latitude": LAT, "longitude": LON}, inplace=True)

        # Set start and end date for Earth observation data
        df[START], df[END] = date(2019, 1, 1), date(2020, 12, 31)

        # Set consistent label column
        df[label_col] = df["crop"].astype(float)

        # Split labels into train, validation, and test sets
        df[SUBSET] = train_val_test_split(index=df.index, val=0.2, test=0.2)

        # Set country column for later analysis
        df[COUNTRY] = "Togo"

        return df

datasets: List[LabeledDataset] = [TogoCrop2019(), ...]
  1. Check your new dataset load_labels function
openmapflow verify TogoCrop2019
  1. Run dataset creation (can be skipped if automated in CI e.g. in https://github.com/nasaharvest/crop-mask):
earthengine authenticate    # For getting new earth observation data
gcloud auth login           # For getting cached earth observation data
openmapflow create-datasets # Initiatiates or checks progress of dataset creation
  1. Push new data to remote storage and new code to Github
dvc commit && dvc push
git add .
git commit -m'Created new dataset'
git push

Training a model cb

A model can be trained by either following the below documentation OR running the above Colab notebook.

Prerequisites:

# Pull in latest data
dvc pull

# Set model name, train model, record test metrics
export MODEL_NAME=<YOUR MODEL NAME>              
python train.py --model_name $MODEL_NAME    
python evaluate.py --model_name $MODEL_NAME 

# Push new models to data version control
dvc commit 
dvc push  

# Make a Pull Request to the repository
git checkout -b"$MODEL_NAME"
git add .
git commit -m "$MODEL_NAME"
git push --set-upstream origin "$MODEL_NAME"

Now after merging the pull request, the model will be deployed to Google Cloud.

Creating a map cb

Prerequisites:

Only available through above Colab notebook. Cloud Architecture must be deployed using the deploy.yaml Github Action.

Accessing existing datasets

from openmapflow.datasets import TogoCrop2019
df = TogoCrop2019().load_df(to_np=True)
x = df.iloc[0]["eo_data"]
y = df.iloc[0]["class_prob"]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openmapflow-0.2.3rc3.tar.gz (83.0 kB view details)

Uploaded Source

Built Distribution

openmapflow-0.2.3rc3-py3-none-any.whl (88.7 kB view details)

Uploaded Python 3

File details

Details for the file openmapflow-0.2.3rc3.tar.gz.

File metadata

  • Download URL: openmapflow-0.2.3rc3.tar.gz
  • Upload date:
  • Size: 83.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for openmapflow-0.2.3rc3.tar.gz
Algorithm Hash digest
SHA256 6d738e80d5c8d35e872187d3e28cae5024da75b31a977342c791956a088771c0
MD5 2fc82c067a4f829f2ce55ff7dd320cd9
BLAKE2b-256 1a252c59e4bca52d4ed86aff29eb5b9d83f70b91868f91e58b46bd38f69ccce6

See more details on using hashes here.

File details

Details for the file openmapflow-0.2.3rc3-py3-none-any.whl.

File metadata

File hashes

Hashes for openmapflow-0.2.3rc3-py3-none-any.whl
Algorithm Hash digest
SHA256 3592f3c7f034cffa255b11b74915085be895dba3f70fd9e8a3c776dbba1c2b3c
MD5 f5c9d53e095cfd4b56644b495bc74309
BLAKE2b-256 75a070a1419d7b3d99e891d7aecd198f19ad684984ac809777ecb66b82b62cc8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page