Skip to content

Commit

Permalink
Document some save_results options. #877
Browse files Browse the repository at this point in the history
  • Loading branch information
EmileSonneveld committed Feb 11, 2025
1 parent 7dcc2b8 commit db2f9f3
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions openeogeotrellis/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,11 +468,21 @@ def file_formats(self) -> dict:
"description": "Specifies the filename prefix when outputting multiple files. By default, depending on the context, 'OpenEO' or a part of the input filename will be used as prefix.",
"default": None,
},
"separate_asset_per_band": { # TODO: should be a boolean that defaults to false
"type": "string",
"separate_asset_per_band": {
"type": "boolean",
"description": "Set to true to write one output tiff per band. If there is a time dimension, the files will be split on time as well.",
"default": False,
},
"filepath_per_band": {
"type": "array",
"description": "Specify an array with the same amount of bands, to give each band it's separate path. Subfolders are allowed.",
"default": None,
},
"attach_gdalinfo_assets": {
"type": "boolean",
"description": "Attaches *_gdalinfo.json files to the output results.",
"default": False,
},
},
},
"PNG": {
Expand Down

0 comments on commit db2f9f3

Please sign in to comment.