batch_request = batch.create(
sentinelhub_request=sentinelhub_request,
tiling_grid=SentinelHubBatch.tiling_grid(
**config.grid_definition
),
output=SentinelHubBatch.output(
default_tile_path=f's3://{config.bucket_name}/{config.tiles_path}/<tileName>/<outputId>.<format>',
skip_existing=False,
overwrite=True
),
description=description
)
I am on this batch.create call from the create_batch_request function from GitHub - sentinel-hub/field-delineation: Field delineation with Sentinel-2 data from Sentinel-Hub and a ResUnet-a architecture..
And I am resulting in this error.
But if I change to the default batch.create function from the example, everything is completely fine.
Is there something wrong with the syntax on the first one?