Good evening,
I am using the API of Planet so I used the requests builder website to test API using the collection id of Planet. When I sent the request the results were black. I followed all the steps in your video tutorial but the results were the same in black. The same problem I have in Python and EO Browser. (Whatever the format of img is PNG, TIFF and JPEG and whatever the coordinates are…)
evalscript = “”"
//VERSION=3
function setup() {
return {
input: [{“bands”: [“Blue”, “Green”, “Red”,“dataMask”]}],
output: { bands: 4}
}
}
function evaluatePixel(sample) {
return [2.5 * sample.Red / 10000,
2.5 * sample.Green / 10000,
2.5 * sample.Blue / 10000,
sample.dataMask]
}
“”"
bbox = BBox(bbox=[12.479470997397163, 41.90998800134053, 12.480441997404082, 41.910589001340924], crs=CRS.WGS84)
geometry = Geometry(geometry={“coordinates”:[[[
12.47947099739721972,
41.90998800134053
],
[
12.480441997404082,
41.90998800134069
],
[
12.480441997404032,
41.910589001340924
],
[
12.479470997397163,
41.910589001340746
],
[
12.47947099739721972,
41.90998800134053
]]],“type”:“Polygon”}, crs=CRS.WGS84)





