darts_export¶
Dataset export for the DARTS dataset.
Functions:
-
export_tile
–Export a tile to a file.
-
missing_outputs
–Check for missing output files in the given directory.
Attributes:
export_tile
¶
export_tile(
tile: xarray.Dataset,
out_dir: pathlib.Path,
bands: list[str] = [
"probabilities",
"binarized",
"polygonized",
"extent",
"thumbnail",
],
ensemble_subsets: list[str] = [],
)
Export a tile to a file.
Parameters:
-
tile
(xarray.Dataset
) –The tile to export.
-
out_dir
(pathlib.Path
) –The path where to export to.
-
bands
(list[str]
, default:['probabilities', 'binarized', 'polygonized', 'extent', 'thumbnail']
) –The bands to export. Defaults to ["probabilities"].
-
ensemble_subsets
(list[str]
, default:[]
) –The ensemble subsets to export. Defaults to [].
Raises:
-
ValueError
–If the band is not found in the tile.
Source code in darts-export/src/darts_export/export.py
missing_outputs
¶
missing_outputs(
out_dir: pathlib.Path,
bands: list[str] = [
"probabilities",
"binarized",
"polygonized",
"extent",
"thumbnail",
],
ensemble_subsets: list[str] = [],
) -> typing.Literal["all", "some", "none"]
Check for missing output files in the given directory.
Parameters:
-
out_dir
(pathlib.Path
) –The directory to check for missing files.
-
bands
(list[str]
, default:['probabilities', 'binarized', 'polygonized', 'extent', 'thumbnail']
) –The bands to export. Defaults to ["probabilities"].
-
ensemble_subsets
(list[str]
, default:[]
) –The ensemble subsets to export. Defaults to [].
Returns:
-
typing.Literal['all', 'some', 'none']
–Literal["all", "some", "none"]: A string indicating the status of missing files: - "none": No files are missing. - "some": Some files are missing, which one will be logged to debug. - "all": All files are missing.
Raises:
-
ValueError
–If the output path is not a directory.