Export Reference¶
darts_export
¶
Dataset export for the DARTS dataset.
__version__ = importlib.metadata.version('darts-nextgen')
module-attribute
¶
export_arcticdem_datamask(tile, out_dir)
¶
Export the arcticdem data mask as a GeoTIFF file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
Source code in darts-export/src/darts_export/inference.py
export_binarized(tile, out_dir, export_ensemble_inputs=False, tags={})
¶
Export the binarized segmentation layer to a file.
If export_ensemble_inputs
is set to True and the ensemble used at least two models for inference,
the binarized segmentation of the models will be written as individual files as well.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
export_ensemble_inputs
|
bool
|
Also save the model outputs, not only the ensemble result. Only applies if the inference result is an ensemble result and has at least two inputs. Defaults to False. |
False
|
tags
|
dict
|
optional GeoTIFF metadata to be written. Defaults to no additional metadata. |
{}
|
Source code in darts-export/src/darts_export/inference.py
export_datamask(tile, out_dir)
¶
Export the data mask as a GeoTIFF file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
Source code in darts-export/src/darts_export/inference.py
export_dem(tile, out_dir)
¶
Export the DEM data as a GeoTIFF file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
Source code in darts-export/src/darts_export/inference.py
export_extent(tile, out_dir)
¶
Export the extent of the prediction as a vector dataset in GeoPackage and GeoParquet format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
Source code in darts-export/src/darts_export/inference.py
export_optical(tile, out_dir)
¶
Export the optical data as a GeoTIFF file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
Source code in darts-export/src/darts_export/inference.py
export_polygonized(tile, out_dir, export_ensemble_inputs=False, minimum_mapping_unit=32)
¶
Export the binarized probabilities as a vector dataset in GeoPackage and GeoParquet format.
If export_ensemble_inputs
is set to True and the ensemble used at least two models for inference,
the vectorized binarized segmentation of the models will be written as individual files as well.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
export_ensemble_inputs
|
bool
|
Also save the model outputs, not only the ensemble result. Only applies if the inference result is an ensemble result and has at least two inputs. Defaults to False. |
False
|
minimum_mapping_unit
|
int
|
segments covering less pixel are removed. Defaults to 32. |
32
|
Source code in darts-export/src/darts_export/inference.py
export_probabilities(tile, out_dir, export_ensemble_inputs=False, tags={})
¶
Export the probabilities layer to a file.
If export_ensemble_inputs
is set to True and the ensemble used at least two models for inference,
the probabilities of the models will be written as individual files as well.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
export_ensemble_inputs
|
bool
|
Also save the model outputs, not only the ensemble result. Only applies if the inference result is an ensemble result and has at least two inputs. Defaults to False. |
False
|
tags
|
dict
|
optional GeoTIFF metadata to be written. Defaults to no additional metadata. |
{}
|
Source code in darts-export/src/darts_export/inference.py
export_tcvis(tile, out_dir)
¶
Export the TCVIS data as a GeoTIFF file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |
Source code in darts-export/src/darts_export/inference.py
export_thumbnail(tile, out_dir)
¶
Export a thumbnail of the optical data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
Dataset
|
The inference result. |
required |
out_dir
|
Path
|
The path where to export to. |
required |