I have tried png image download with some pairs of bbox & crs by process API. In case of EPSG 4326, downloaded png has always its properties as follows.
- Dimensions 1 x 1
- Width 1 pixels
- Hight 1 pixels
- Size 69 bytes
Nothing changes if I make bbox larger. How can I solve this problem and get expected bbox image designated in evalscript?
Here is sample case of evalscript settings
bbox = [69.1852, 24.5448, 69.1940, 24.5510]
crs = “http://www.opengis.net/def/crs/EPSG/0/4326”
input = {
“bounds”: {
“bbox”: bbox,
“properties”: {
“crs”: crs
}
},
“data”: b{
“type”: “S2L2A”,
“dataFilter”: {
“timeRange”: {
“from”: “2021-03-01T00:00:00Z”,
“to”: “2021-03-10T23:59:59Z”
}
},
“processing”: {
“upsampling”: “BICUBIC”
}
}]
}
output = {
“resx”: 10,
“resy”: 10,
“responses”: <{
“identifier”: “TRUE”,
“format”: {
“type”: “image/png”
}
}]
}