
NDVI for 2K Sentinel tiles
Dataset: Sentinel-2 tile ids
import io
from pathlib import Path
import boto3
import numpy as np
import pandas as pd
import rasterio
from burla import remote_parallel_map
from rasterio.io import MemoryFile
SRC_BUCKET = "sentinel-s2-l2a"
DST_BUCKET = "my-ndvi-outputs"
REPORT_PATH = Path("/workspace/shared/ndvi/ndvi_report.csv")Step 1: Make one task per tile
Step 2: Compute NDVI in the worker
Step 3: Smoke test one tile
Step 4: Run the tiles
What's the point?
Last updated