--- license: apache-2.0 pretty_name: OlmoEarth Land Cover Change (LCC) Dataset tags: - remote-sensing - earth-observation - change-detection - sentinel-2 size_categories: - 1K bare transitions. - Phase 11: output-based labeling focused on mining predictions. - Phase 12: output-based labeling focused on mining predictions. - Phase 13: output-based labeling focused on mining predictions. - Phase 14: output-based labeling focused on mining predictions. - Phase 15: output-based labeling focused on mining predictions. - Phase 16: label points based on a set of 10 datasets related to mining in different parts of sub-saharan Africa. - Phase 17: output-based labeling. - Phase 18: output-based labeling. ## Model output summary rasters Alongside the annotations, we provide summary GeoTIFFs produced by running the trained LCC model at scale. The world is divided into 32768x32768-pixel UTM tiles at 10 m/pixel (327.68 km per side), and each processed tile yields one file named `{EPSG code}_{col}_{row}_summary.tif`, where `col` and `row` are the tile's top-left corner in the 10 m/pixel UTM pixel grid (multiply by the resolution to get projection coordinates). Each file is a 9-band uint8 GeoTIFF summarizing the model's per-pixel predictions for one reference timestamp. Pixels the model did not predict (e.g. no cloud-free imagery) are 0 in every band. | Band | Name | Description | | --- | --- | --- | | 1 | `binary_change` | Probability of change, scaled to 0-255. | | 2 | `pre_class` | Argmax class of the pre/same change-category head (see table below). | | 3 | `post_class` | Argmax class of the post change-category head (see table below). | | 4 | `src_class` | Argmax source land cover class (see table below). | | 5 | `dst_class` | Argmax destination land cover class (see table below). | | 6 | `pre_score` | Probability (0-255) of the argmax class in band 2. | | 7 | `post_score` | Probability (0-255) of the argmax class in band 3. | | 8 | `ts_pre_month` | Predicted change start (last pre-change date), month-encoded. | | 9 | `ts_post_month` | Predicted change end (change complete date), month-encoded. | **Month encoding** (bands 8-9): 0 means no prediction; otherwise the value is 1 + the number of whole calendar months between January 2015 and the predicted date. So 1 = January 2015, 13 = January 2016, and so on (255 reaches March 2036). **Land cover classes** (bands 4-5): 0 = no prediction, then 1 = `bare`, 2 = `burnt`, 3 = `crops`, 4 = `fallow/shifting cultivation`, 5 = `grassland`, 6 = `Lichen and moss`, 7 = `shrub`, 8 = `snow and ice`, 9 = `tree`, 10 = `urban/built-up`, 11 = `water`, 12 = `wetland (herbaceous)`. **Pre/same change-category classes** (band 2): in the deployed model, the `pre_change_category` and `same_change_category` heads are merged into a single head, with the "same" categories appended after the "pre" categories: | Value | Category | | --- | --- | | 0 | no prediction | | 1 | none | | 2 | deforestation | | 3 | urban_erosion | | 4 | wetland_loss | | 5 | water_contract | | 6 | removed_crop_structure | | 7 | agricultural_activity | | 8 | wildfire | | 9 | ice_motion | | 10 | flooding | **Post change-category classes** (band 3): | Value | Category | | --- | --- | | 0 | no prediction | | 1 | none | | 2 | vegetation_growth | | 3 | new_building | | 4 | new_road | | 5 | new_infrastructure | | 6 | new_crop_field | | 7 | new_aquafarm | | 8 | site_clearing | | 9 | water_expand | | 10 | mining | | 11 | new_crop_structure | | 12 | selective_logging | | 13 | landslide | | 14 | settlement | Note that "none" (value 1) is a valid prediction for both category heads: it indicates the model predicts a change at that pixel but none of the listed categories apply (or, for the merged pre/same head, that the change is fully described by the post category, and vice versa). The argmax in bands 2-5 is computed excluding the internal `nodata` class, so value 0 always means "no prediction" rather than a predicted class. For most applications, threshold band 1 (`binary_change`) first (e.g. at 128, corresponding to probability 0.5) and interpret the remaining bands only at pixels that pass the threshold; bands 2-9 are populated at every predicted pixel regardless of whether change is predicted there. For applications interested in specific types of changes that correspond to a change category, filter for the class and threshold the corresponding probability. For example, to create a mining mask, filter for band 3 `post_class = 10` (10 is mining) and then threshold the band 7 probabilty. ## Related resources - Training and inference code: [WIP](https://github.com/allenai/rslearn_projects/pull/294). - Encoder: [OlmoEarth-v1.2-Base](https://huggingface.co/allenai/OlmoEarth-v1_2-Base). - Imagery: Sentinel-2 L2A (Copernicus).