Hi SH forum,
I want to download a 10km2 Pleiades image in all its 0.5m glory (resolution).
But doing so exceeds the 5000*5000 pixel limit.
So I have split my AOI into two tiles using bboxsplitter. I’m trying to pass it as this:
bounding_box = BBox(bbox = geometry_lists1].boundary, crs = CRS.WGS84) #1 of 2 tiles
wcs_true_color_request = WcsRequest(
data_source = DataSource(collection_id),
layer = ‘<LAYER_NAME>’,
bbox = bounding_box,
time = ‘2019-08-01’,
resx = ‘0.5m’,
resy = ‘0.5m’,
config = config
)
But I still get a size limit error: "Output image area of 6322 x 3182 is too large! Should be at most 5000 x 5000 pixels."
Do I have to split the image before ordering? i.e. which would use more of my quota?