CRS support

The list of coordinate reference systems supported by Sentinel Hub API is provided below. The coordinate reference system must be set with an URL starting with http://www.opengis.net/def/crs/ and it must be set under the field input.bounds.properties.crs, e.g. request in WGS 84 reference system, defined with the URL http://www.opengis.net/def/crs/EPSG/0/4326:

{
"input": {
"bounds": {
"bbox": [
12.8114318847656,
41.9663828501025,
12.8732299804687,
42.0046623333086
],
"properties": {
"crs": "http://www.opengis.net/def/crs/EPSG/0/4326"
}
},
"data": [
{
"type": "sentinel-2-l1c"
}
]
},
...
}

WGS 84:

WGS 84 / Pseudo-Mercator:

UTM northern hemisphere:

The last two digits of EPSG codes above represent the number of corresponding UTM zone in northern hemisphere, e.g. use http://www.opengis.net/def/crs/EPSG/0/32612 for UTM zone 12N.

UTM southern hemisphere:

The last two digits of EPSG codes above represent the number of corresponding UTM zone in southern hemisphere, e.g. use http://www.opengis.net/def/crs/EPSG/0/32712 for UTM zone 12S.

Others: