Hello, I am trying to obtain average CO (Carbon Monoxide) air pollution at a specified place using sentinelhub-py module. I have the following evalscript:
Thanks for the advice. However, I am working with coordinates coming from Google Maps (Geocoding API overview | Google for Developers). So, I guess I am supposed to use POP_WEB for this. Am I wrong?
It was not about the Geocoding API, but the request you sent to the Statistical API. The coordinates used in the BBox class was defined in (latitude, longitude), which was not aligned to POP_WEB.
In short, when you define a bounding box using BBox like BBox(coordinates, CRS.POP_WEB), the coordinates should be in the crs defined later as CRS.POP_WEB. In this case, either you use (longitude, latitude) with CRS.WGS84 or coordinates defined in Popular Web Mercator with CRS.POP_WEB.