Empty bbox list

I am getting an empty bbox list when I try to split my data into boxes.

Hi @Vikrutas55,

Please check that your country shape geometry has coordinate order longitude-latitude. If that is the case, could you share the geometry with us?

hello @maleksandrov,

My notebook is similar to the land use land cover classification of Slovenia.
https://eo-learn.readthedocs.io/en/latest/examples/land-cover-map/SI_LULC_pipeline.html

If you are using svn_border.geojson from eo-learn repository then the reason for your problems is that the geometry of Slovenian border is given in UTM 33N coordinate reference system and not in WGS 84.

Therefore, replacing sentinelhub.CRS.WGS84 with sentinelhub.CRS.UTM_33N in your code should solve the problem.

I got it thanks @maleksandrov !