I am using code that i mentioned below for batch processing in python. I want to export tiles to folder path in bucket in this code but it does not work in any way. I tried default_tile_path, tile_path, bucket_folder etc. How can i insert folder path into batch request?
BUCKET_NAME = "bucket"
BUCKET_FOLDER = "2023/03-1/"
sentinelhub_request = SentinelHubRequest(
evalscript=evalscript,
input_data=[
SentinelHubRequest.input_data(
data_collection=DataCollection.SENTINEL2_L2A,
time_interval=time_interval,
)
],
responses=[
SentinelHubRequest.output_response("default", MimeType.TIFF),
],
geometry=full_geometry,
config=config,
)
batch_request = batch.create(
sentinelhub_request,
tiling_grid=SentinelHubBatch.tiling_grid(grid_id=GRID_ID, resolution=10),
bucket_name=BUCKET_NAME,
tile_path=BUCKET_FOLDER, (does not work)
description=""
)
batch_request