This document explains the Label Extension to the SpatioTemporal Asset Catalog (STAC) specification.
This extension is meant to support using labeled AOIs with Machine Learning models, particularly training data sets, but can be used in any application where labeled AOIs are needed.
This document explains the fields of the STAC Label Extension to a STAC Item. It is used to describe labeled Areas of Interest (AOIs) that are used with earth observation imagery. These labels can take several forms, though all are expected to be contained with a GeoJSON FeatureCollection:
Field Name | Type | Description |
---|---|---|
label:properties | [string]|null | REQUIRED These are the names of the property field(s) in each Feature of the label asset's FeatureCollection that contains the classes (keywords from label:classes if the property defines classes). If labels are rasters, use null . |
label:classes | [Class Object] | REQUIRED if using categorical data. A Class Object defining the list of possible class names for each label:properties . (e.g., tree, building, car, hippo) |
label:description | string | REQUIRED A description of the label, how it was created, and what it is recommended for |
label:type | string | REQUIRED An ENUM of either vector label type or raster label type |
label:tasks | [string] | Recommended to be a subset of 'regression', 'classification', 'detection', or 'segmentation', but may be an arbitrary value |
label:methods | [string] | Recommended to be a subset of 'automated' or 'manual', but may be an arbitrary value. |
label:overviews | [Label Overview Object] | An Object storing counts (for classification-type data) or summary statistics (for continuous numerical/regression data). |
Field Name | Type | Description |
---|---|---|
name | string|null | REQUIRED The property key within the asset's each Feature corresponding to class labels. If labels are raster-formatted, use null. |
classes | [string]|[number] | REQUIRED The different possible class values within the property name . |
Field Name | Type | Description |
---|---|---|
property_key | string | The property key within the asset corresponding to class labels. |
counts | [Count Object] | An object containing counts for categorical data. |
statistics | [Stats Object] | An object containing statistics for regression/continuous numeric value data. |
Field Name | Type | Name | Description |
---|---|---|---|
name | string | Class Name | The different possible classes within the property name . |
count | integer | Count | The number of occurrences of the class. |
{
"property_key": "road_type",
"counts": [
{
"name": "dirt",
"count": 10
},
{
"name": "paved",
"count": 99
}
]
}
Field Name | Type | Name | Description |
---|---|---|---|
name | string | Stat Name | The name of the statistic being reported. |
value | number | Value | The value of the statistic name . |
{
"property_key": "elevation",
"statistics": [
{
"name": "mean",
"value": 100.1
},
{
"name": "median",
"value": 102.3
},
{
"name": "max",
"value": 100000
}
]
}
One or more assets will contain references to the label data. These assets have these requirements:
label:type
is "vector", the labels must be a GeoJSON FeatureCollection.label:type
is "raster", it is recommended to also have an asset of a GeoJSON FeatureCollection
defining the extent.labels
. Other labels such as labels-vector
(for vector labels),
labels-raster
(for raster labels), labels-extent
(for the vector extent of raster labels), labels-training
(for ML training data), and labels-testing
(for ML testing data) may also be added to further indicate what
specific assets reference.label:tasks
is tile_classification, object_detection, or segmentation,
each feature should have one or more properties containing the label(s) for the
class (one of label:classes
). the name of the property can be anything
(use "label" if making from scratch), but needs to be specified in the Item
with the label:properties
field.label:tasks
is tile_regression, each feature should have one or more properties
defining the value for regression. the name of the property can be anything
(use "label" if making from scratch), but needs to be specified in the Item
with the label:properties
field.The Label Extension recommends assets be named with the keys "raster_labels" or "vector_labels". However, this is just a recommendation, and the names are entirely at the discretion of the implementer.
If the labels are formatted as rasters - for example, a pixel mask with 1s where there is water and 0s where there is land - the following approach is recommended for including those data.
The raster label file (e.g. a GeoTIFF) should be included as an asset under the item.
Along with the image file, a GeoJSON FeatureCollection
asset should be included.
That FeatureCollection
should contain a single Feature
, ideally a polygon geometry defining the extent of the raster.
The source imagery used for creating the label is linked to under links
(see below).
However the source imagery is likely to have been rendered in some way when creating
the training data. For instance, a byte-scaled true color image may have been created
from the source imagery. It may be useful to save this image and include it as an asset in the Item
.
A Label Item links to any source imagery that the AOI applys to by
linking to the STAC Item representing the imagery. Source imagery is indicated
by using a rel
type of "source" and providing the link to the STAC Item.
In addition the source imagery link has a new label extension specific field:
Field Name | Type | Name | Description |
---|---|---|---|
label:assets | [string] | Assets | The keys for the assets within the source item to which this label item applies. |
The label:assets
field applies to situations where the labels may apply to certain
assets inside the source imagery Item, but not others (e.g. if the labels
were traced on top of RGB imagery, but the source item also contains assets for
a Digital Elevation Model).
All contributions are subject to the STAC Specification Code of Conduct. For contributions, please follow the STAC specification contributing guide Instructions for running tests are copied here for convenience.
The same checks that run as checks on PR's are part of the repository and can be run locally to verify that changes are valid.
To run tests locally, you'll need npm
, which is a standard part of any node.js installation.
First you'll need to install everything with npm once. Just navigate to the root of this repository and on your command line run:
npm install
Then to check markdown formatting and test the examples against the JSON schema, you can run:
npm test
This will spit out the same texts that you see online, and you can then go and fix your markdown or examples.
If the tests reveal formatting problems with the examples, you can fix them with:
npm run format-examples