Getting easting / northing coordinates

Hi,
Working with Sentinel-2, I’d like to investigate and define overlaps between tiles based on their UTM CRS coordinates and grid cell (pixel) sizes. GeoPos always seems to be in lat-lon. I tried to import the ImageGeometry class but got an:
ImportError: cannot import name ‘ImageGeometry’
error.
Is there some way to work with native CRS coordinates with snappy?

Hi,

Have you tried looking at the CRS information?

from snappy import ProductIO
prod = ProductIO.readProduct(‘path/to/S2’)
prod.getSceneCRS().toString()