Introduction to the darts components¶
Components
The idea behind the Architecture of darts-nextgen
is to provide Components
to the user.
Users should pick their components and put them together in their custom pipeline, utilizing their own parallelization framework.
Pipeline v2 shows how this could look like for a simple sequential pipeline - hence without parallelization framework.
Currently, the implemented components are:
Component | Statefull? and why? | Bound |
---|---|---|
darts_acquisition.load_arcticdem | Stateless | Network-IO + Disk-IO |
darts_acquisition.load_tcvis | Stateless | Network-IO + Disk-IO |
darts_acquisition.load_planet_scene | Stateless | Disk-IO |
darts_acquisition.load_planet_masks | Stateless | Disk-IO |
darts_acquisition.load_s2_scene | Stateless | Disk-IO |
darts_acquisition.load_s2_from_gee | Stateless | Network-IO (+ Disk-IO) + CPU |
darts_acquisition.load_s2_from_stac | Stateless | Network-IO (+ Disk-IO) |
darts_acquisition.load_s2_masks | Stateless | Disk-IO + CPU |
darts_preprocessing.preprocess_legacy_fast | Stateless | CPU + GPU |
darts_segmentation.SMPSegmenter.segment_tile | Statefull: Model-Weights | GPU |
darts_ensemble.EnsembleV1.segment_tile | Statefull: Model-Weights | GPU |
darts_postprocessing.prepare_export | Stateless | CPU + GPU |
darts_export.export_tile | Stateless | Disk-IO |
Component Outputs¶
Incomplete
This section is incomplete and will be updated in the future.
All component-tiles are xr.Datasets
which have geospatial coordinates x
, y
and a spatial reference spatial_ref
(from rioxarray / odc-geo) as coordinates..
The following documents the input and output of each component.
Acquisition: Load ArcticDEM¶
Input¶
(Acquisition components do not have an input in form of a xr.Dataset
)
Output¶
DataVariable | shape | dtype | no-data | attrs | note |
---|---|---|---|---|---|
dem |
(x, y) | float32 | nan | data_source, long_name, units | |
dem_datamask |
(x, y) | bool | False | data_source, long_name, units |
Preprocessing: Legacy Fast¶
Input¶
DataVariable | shape | dtype | no-data | attrs | note |
---|---|---|---|---|---|
blue |
(x, y) | uint16 | 0 | data_source, long_name, units | |
green |
(x, y) | uint16 | 0 | data_source, long_name, units | |
red |
(x, y) | uint16 | 0 | data_source, long_name, units | |
nir |
(x, y) | uint16 | 0 | data_source, long_name, units | |
dem |
(x, y) | float32 | nan | data_source, long_name, units | |
dem_datamask |
(x, y) | bool | False | data_source, long_name, units | |
tc_brightness |
(x, y) | uint8 | - | data_source, long_name | |
tc_greenness |
(x, y) | uint8 | - | data_source, long_name | |
tc_wetness |
(x, y) | uint8 | - | data_source, long_name |
Output¶
DataVariable | shape | dtype | no-data | attrs | note |
---|---|---|---|---|---|
[Input] | |||||
ndvi |
(x, y) | uint16 | 0 | data_source, long_name | Values between 0-20.000 (+1, *1e4) |
relative_elevation |
(x, y) | int16 | 0 | data_source, long_name, units | |
slope |
(x, y) | float32 | nan | data_source, long_name |
Segmentation / Ensemble Output¶
Coordinates: x
, y
and spatial_ref
(from rioxarray)
DataVariable | shape | dtype | no-data | attrs |
---|---|---|---|---|
[Output from Preprocessing] | ||||
probabilities |
(x, y) | float32 | nan | long_name |
probabilities-model-X* |
(x, y) | float32 | nan | long_name |
*: optional intermedia probabilities in an ensemble
Postprocessing Output¶
Coordinates: x
, y
and spatial_ref
(from rioxarray)
DataVariable | shape | dtype | no-data | attrs | note |
---|---|---|---|---|---|
[Output from Preprocessing] | |||||
probabilities_percent |
(x, y) | uint8 | 255 | long_name, units | Values between 0-100 |
binarized_segmentation |
(x, y) | uint8 | - | long_name |