I have been following this example:
https://eo-learn.readthedocs.io/en/latest/examples/io/SentinelHubIO.html
It works fine but when I change the line
roi_bbox = BBox(bbox=[5.60, 52.68, 5.75, 52.63], crs=CRS.WGS84)
to
roi_bbox = BBox(bbox=[1475000.0, 5100000.0, 1495000.0, 5120000.0], crs=CRS(‘2193’))
there are no available images found. My guess is that CRS(‘2193’) which is NZGD2000 / New Zealand Transverse Mercator 2000 is not compatible.
Although on this page https://docs.sentinel-hub.com/api/latest/api/process/crs/ its listed in the ‘other’ section. Can I not use this CRS format?
The error message I get is:
ValueError: During execution of task SentinelHubInputTask: No available images for requested time range: (datetime.datetime(2018, 4, 1, 0, 0), datetime.datetime(2018, 5, 1, 23, 59, 59))

